CustomerTransferRequest

data class CustomerTransferRequest(val amount: Long, val currencyCode: String, val recipient: CustomerTransferRecipient? = null, val merchantRefNum: String? = null, val fxQuote: String? = null, val transferDetails: TransferDetails)

Data class representing a Customer Transfer preview request object.

Constructors

Link copied to clipboard
constructor(amount: Long, currencyCode: String, recipient: CustomerTransferRecipient? = null, merchantRefNum: String? = null, fxQuote: String? = null, transferDetails: TransferDetails)

Properties

Link copied to clipboard

Amount of the withdrawal in minor units.

Link copied to clipboard

Currency alphabetic code as specified by ISO 4217.

Link copied to clipboard
val fxQuote: String? = null

FX Quote ID for the transfer in case currency conversion is required. If not passed currency conversion is not performed.

Link copied to clipboard
val merchantRefNum: String? = null

Merchant reference number associated with the transaction.

Link copied to clipboard

Contains transfer recipient information.

Link copied to clipboard

Model describing transfer metadata.