ConsumerInformationDetailsModel

data class ConsumerInformationDetailsModel(@Json(name = "first_name") val firstName: String?, @Json(name = "middle_name") val middleName: String?, @Json(name = "last_name") val lastName: String?, @Json(name = "date_of_birth") val dateOfBirth: String?, @Json(name = "ssn_last_4") val ssnLast4: String?, @Json(name = "id_information") val idInformation: IdInformationDetailsModel?, @Json(name = "phone_number") val phoneNumber: String?, @Json(name = "email_address") val emailAddress: String?)

Account consumer information.

Constructors

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

Properties

Link copied to clipboard

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

Link copied to clipboard

User email address.

Link copied to clipboard

User first name.

Link copied to clipboard

User identity document information. Only present for EU consumers.

Link copied to clipboard

User last name.

Link copied to clipboard

User middle name.

Link copied to clipboard

User phone number.

Link copied to clipboard

User social security number. Only present for US consumers.