Quote

public struct Quote : Codable

The quote model.

  • The quote’s unique identifier.

    Declaration

    Swift

    public let quoteUuid: String
  • The exchange rate that will be applied to this transaction.

    Declaration

    Swift

    public let exchangeRate: String
  • The amount that will be received by the beneficiary of the transaction, in the destination currency.

    Declaration

    Swift

    public let sendAmount: Int64
  • The destination currency in ISO-4217 format.

    Declaration

    Swift

    public let currencyString: String
  • The destination currency in ISO-4217 format. Check currencyString if nil.

    Declaration

    Swift

    public var currency: Currency? { get }
  • The cost of the transaction to be paid by the consumer, in cents. This includes the funding of the transaction and the applied service fees if any.

    Declaration

    Swift

    public let transactionCost: Int
  • The date/time when this quote expires.

    Declaration

    Swift

    public let expiresAt: String
  • Service fees associated with the quoted transaction.

    Declaration

    Swift

    public let serviceFeesValues: [ServiceFeeValue]?