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

import Foundation

/// Schema for purchase status response when checking purchase status (credits, upgrades, etc.).
public struct PurchaseStatusSchemaResponse: Codable, Equatable, Identifiable {
    public var clientSecret: String?
    public var id: String
    public var processing: Bool
    public var status: String

    public init(clientSecret: String? = nil, id: String, processing: Bool, status: String) {
        self.clientSecret = clientSecret
        self.id = id
        self.processing = processing
        self.status = status
    }
}
