CreateCustomerIdentityRequest

data class CreateCustomerIdentityRequest(val address: FrameObjects.BillingAddress, val firstName: String, val lastName: String, val dateOfBirth: String, val phoneNumber: String, val email: String, val ssn: String)

The request body required to create a new customer identity verification record.

All fields are required by the API; none may be omitted.

Constructors

Link copied to clipboard
constructor(address: FrameObjects.BillingAddress, firstName: String, lastName: String, dateOfBirth: String, phoneNumber: String, email: String, ssn: String)

Properties

Link copied to clipboard

The customer's billing address.

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

The customer's date of birth in YYYY-MM-DD format.

Link copied to clipboard

The customer's email address.

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

The customer's first name.

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

The customer's last name.

Link copied to clipboard
@SerializedName(value = "phone_number")
val phoneNumber: String

The customer's phone number.

Link copied to clipboard
val ssn: String

The customer's Social Security Number.