// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct CommercialRightsPurchaseSchemaResponse: Codable, Equatable {
    public var checkoutUrl: String
    public var ok: Bool

    public init(checkoutUrl: String, ok: Bool) {
        self.checkoutUrl = checkoutUrl
        self.ok = ok
    }
}
