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

import Foundation

/// Schema for default currency response based on user location.
public struct DefaultCurrencySchemaResponse: Codable, Equatable {
    public var currency: String

    public init(currency: String) {
        self.currency = currency
    }
}
