ConsumerInformationRequest

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

Account consumer information.

Constructors

Link copied to clipboard
constructor(firstName: String? = null, middleName: String? = null, lastName: String? = null, dateOfBirth: String? = null, ssn: String? = null, phoneNumber: 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 address.

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.

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

User phone number.

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

User social security number. Only present for US consumers.