Deposit

data class Deposit(val amount: String, val currency: String, val externalId: String, val payee: Party? = null, val payerMessage: String, val payeeNote: String)

Request body for the Disbursements deposit operation, crediting the payee account.

Constructors

Link copied to clipboard
constructor(amount: String, currency: String, externalId: String, payee: Party? = null, payerMessage: String, payeeNote: String)

Properties

Link copied to clipboard

The amount that will be credited to the payee account.

Link copied to clipboard

The ISO 4217 currency code.

Link copied to clipboard

A caller-assigned reference used for reconciliation; need not be unique.

Link copied to clipboard
val payee: Party?

The receiving party credited by the deposit.

Link copied to clipboard

Message written to the payee's transaction history.

Link copied to clipboard

Message written to the payer's transaction history.