CustomerTransferRecipient

data class CustomerTransferRecipient(val customerId: String? = null, val email: String? = null, val mobile: String? = null)

Data class containing transfer recipient information. Either customerID, email or mobile number must be provided. If used in CustomerTransferRequest context, the system tries to resolve email or mobile to customerID in the system.

Constructors

Link copied to clipboard
constructor(customerId: String? = null, email: String? = null, mobile: String? = null)

Properties

Link copied to clipboard
val customerId: String? = null

The unique identifier of the recipient.

Link copied to clipboard
val email: String? = null

The email address of the recipient.

Link copied to clipboard
val mobile: String? = null

The mobile number of the recipient.