CustomerDataVerificationResponse

data class CustomerDataVerificationResponse(val verificationId: String, val attribute: CustomerDataVerificationAttribute, val notificationType: CustomerDataVerificationNotificationType, val flow: CustomerDataVerificationFlow, val currentAttempts: Int, val allowableAttempts: Int, val creationTime: Calendar, val expirationTime: Calendar?)

Data class containing the necessary information to finalize the verification process for a specific customer attribute, such as email or phone.

Constructors

Link copied to clipboard
constructor(verificationId: String, attribute: CustomerDataVerificationAttribute, notificationType: CustomerDataVerificationNotificationType, flow: CustomerDataVerificationFlow, currentAttempts: Int, allowableAttempts: Int, creationTime: Calendar, expirationTime: Calendar?)

Properties

Link copied to clipboard

The maximum number of allowed attempts to initiate the verification process for the same customer attribute.

Link copied to clipboard

The customer attribute being validated in the particular verification process.

Link copied to clipboard

The time the customer data verification was created in the form of Calendar.

Link copied to clipboard

The number of current attempts made to initiate the verification process for the same customer attribute.

Link copied to clipboard

The time the customer data verification expires in the form of Calendar.

Link copied to clipboard

The type of verification flow initiated for a specific customer attribute.

Link copied to clipboard

The mechanism used to deliver the customer attribute verification information.

Link copied to clipboard

A unique identifier for the verification process associated with a particular customer attribute.