CustomerTransferRecipient

data class CustomerTransferRecipient(val customerId: String? = null, val fullName: 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, fullName: String? = null, email: String? = null, mobile: String? = null)

Properties

Link copied to clipboard

The unique identifier of the recipient.

Link copied to clipboard

The email address of the recipient.

Link copied to clipboard

The full name of the recipient.

Link copied to clipboard

The mobile number of the recipient.