ReceiptDestination

public struct ReceiptDestination : Codable

The receipt destination model.

  • The first name.

    Declaration

    Swift

    public var firstName: String?
  • The last name.

    Declaration

    Swift

    public var lastName: String?
  • The address.

    Declaration

    Swift

    public var address: Address?
  • The payment method.

    Declaration

    Swift

    public var paymentMethod: PaymentMethod?
  • The amount is the value associated with the request, in cents. This field is only available for INTERNATIONAL_TRANSFER type transactions.

    Declaration

    Swift

    public var destinationAmount: Int64?
  • The currency code in ISO-4217 format. This field is only available for INTERNATIONAL_TRANSFER type transactions.

    Declaration

    Swift

    public var destinationCurrencyString: String?
  • The currency code in ISO-4217 format. This field is only available for INTERNATIONAL_TRANSFER type transactions. Check destinationCurrencyString if nil.

    Declaration

    Swift

    public var destinationCurrency: Currency? { get }