QuotePreview

public struct QuotePreview : Codable, Sendable

Payout method model.

  • The spot exchange rate for the provided currency pair.

    Declaration

    Swift

    public var exchangeRate: String
  • The amount to be sent, in source currency.

    Declaration

    Swift

    public var sendAmount: Int
  • The source amount currency.

    Declaration

    Swift

    public var sourceCurrencyString: String
  • The source amount currency. Check sourceCurrencyString if nil.

    Declaration

    Swift

    public var sourceCurrency: Currency? { get }
  • The amount to be received by the Beneficiary, in target currency.

    Declaration

    Swift

    public var targetAmount: Int
  • The target amount currency.

    Declaration

    Swift

    public var targetCurrencyString: String
  • The target amount currency. Check targetCurrencyString if nil.

    Declaration

    Swift

    public var targetCurrency: Currency? { get }
  • The country where the funds will be transferred to.

    Declaration

    Swift

    public var country: String
  • The Payout Method type.

    Declaration

    Swift

    public var payoutMethodTypeString: String
  • The target amount currency. Check payoutMethodTypeString if nil.

    Declaration

    Swift

    public var payoutMethodType: PayoutMethodType? { get }
  • The UUID of the cash pickup location.

    Declaration

    Swift

    public var cashPickupLocationUuid: String?
  • The cost of the transaction to be paid by the sender, in cents. This includes the funding of the transaction and the applied service fees if any.

    Declaration

    Swift

    public var transactionCost: Int
  • The service fee values.

    Declaration

    Swift

    public var serviceFeeValues: [ServiceFeeValue]?