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

import Foundation

public struct CreditPurchaseSchemaResponse: Codable, Equatable, Identifiable {
    public var id: String
    public var ok: Bool

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