Customer Transfer Recipient
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.