IdentificationData

data class IdentificationData(val firstName: String?, val lastName: String?, val middleName: String?, val dateOfBirth: String?, val licenseNumber: String?, val state: String?, val expirationDate: String?, val address: String?)

Contains personal data extracted from the customer's identity document during verification.

Constructors

Link copied to clipboard
constructor(firstName: String?, lastName: String?, middleName: String?, dateOfBirth: String?, licenseNumber: String?, state: String?, expirationDate: String?, address: String?)

Properties

Link copied to clipboard

The address printed on the identity document.

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

The customer's date of birth extracted from the document.

Link copied to clipboard
@SerializedName(value = "expiration_date")
val expirationDate: String?

The expiration date of the identity document.

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

The customer's first name as it appears on the document.

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

The customer's last name as it appears on the document.

Link copied to clipboard
@SerializedName(value = "license_number")
val licenseNumber: String?

The driver's license or ID number found on the document.

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

The customer's middle name as it appears on the document, if present.

Link copied to clipboard

The issuing state of the identity document.