CardholderInformationRequest

@Serializable
data class CardholderInformationRequest(val firstName: String? = null, val middleName: String? = null, val lastName: String? = null, val dateOfBirth: String? = null, val emailAddress: String? = null)

Account Cardholder information.

Constructors

Link copied to clipboard
constructor(firstName: String? = null, middleName: String? = null, lastName: String? = null, dateOfBirth: String? = null, emailAddress: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "date_of_birth")
val dateOfBirth: String? = null

User date of birth in the format "yyyy-mm-dd".

Link copied to clipboard
@SerialName(value = "email_address")
val emailAddress: String? = null

User email.

Link copied to clipboard
@SerialName(value = "first_name")
val firstName: String? = null

User first name.

Link copied to clipboard
@SerialName(value = "last_name")
val lastName: String? = null

User last name.

Link copied to clipboard
@SerialName(value = "middle_name")
val middleName: String? = null

User middle name.