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

import Foundation

/// Schema for tax information response.
public struct TaxInfoSchemaResponse: Codable, Equatable {
    public var error: String?
    public var taxRate: Double

    public init(error: String? = nil, taxRate: Double) {
        self.error = error
        self.taxRate = taxRate
    }
}
