ReceiptDestination
public struct ReceiptDestination : Codable, Sendable
The receipt destination model.
-
The first name.
Declaration
Swift
public let firstName: String? -
The last name.
Declaration
Swift
public let lastName: String? -
The address.
Declaration
Swift
public let address: Address? -
The payout method.
Declaration
Swift
public let payoutMethod: ReceiptPayoutMethod? -
The amount is the value associated with the request, in cents. This field is only available for
INTERNATIONAL_TRANSFERtype transactions.Declaration
Swift
public let destinationAmount: Int64? -
The currency code in ISO-4217 format. This field is only available for
INTERNATIONAL_TRANSFERtype transactions.Declaration
Swift
public let destinationCurrencyString: String? -
The currency code in ISO-4217 format. This field is only available for
INTERNATIONAL_TRANSFERtype transactions. CheckdestinationCurrencyStringifnil.Declaration
Swift
public var destinationCurrency: Currency? { get }
View on GitHub