ConsumerInformationRequest

data class ConsumerInformationRequest(@Json(name = "first_name") val firstName: String? = null, @Json(name = "middle_name") val middleName: String? = null, @Json(name = "last_name") val lastName: String? = null, @Json(name = "date_of_birth") val dateOfBirth: String? = null, @Json(name = "ssn") val ssn: String? = null, @Json(name = "id_information") val idInformation: IdInformationDetailsRequest? = null, @Json(name = "phone_number") val phoneNumber: String? = null, @Json(name = "email_address") val emailAddress: String? = null)

Account consumer information.

Constructors

Link copied to clipboard
constructor(@Json(name = "first_name") firstName: String? = null, @Json(name = "middle_name") middleName: String? = null, @Json(name = "last_name") lastName: String? = null, @Json(name = "date_of_birth") dateOfBirth: String? = null, @Json(name = "ssn") ssn: String? = null, @Json(name = "id_information") idInformation: IdInformationDetailsRequest? = null, @Json(name = "phone_number") phoneNumber: String? = null, @Json(name = "email_address") emailAddress: String? = null)

Properties

Link copied to clipboard
val dateOfBirth: String? = null

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

Link copied to clipboard
val emailAddress: String? = null

User email address.

Link copied to clipboard
val firstName: String? = null

User first name.

Link copied to clipboard

User identity document information. Only present for EU consumers.

Link copied to clipboard
val lastName: String? = null

User last name.

Link copied to clipboard
val middleName: String? = null

User middle name.

Link copied to clipboard
val phoneNumber: String? = null

User phone number.

Link copied to clipboard
val ssn: String? = null

User social security number. Only present for US consumers.