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

import Foundation

public struct PriceSchema: Codable, Equatable {
    public var currency: String
    public var periodType: String
    public var price: Double

    public init(currency: String, periodType: String, price: Double) {
        self.currency = currency
        self.periodType = periodType
        self.price = price
    }
}
