VerificationChecks

data class VerificationChecks(val idPhotoFaceMatch: VerificationCheckStatus?, val idAgeOver18: VerificationCheckStatus?, val idNotExpired: VerificationCheckStatus?, val idTamperDetection: VerificationCheckStatus?)

Holds the results of individual automated checks performed on the customer's identity document.

Constructors

Link copied to clipboard
constructor(idPhotoFaceMatch: VerificationCheckStatus?, idAgeOver18: VerificationCheckStatus?, idNotExpired: VerificationCheckStatus?, idTamperDetection: VerificationCheckStatus?)

Properties

Link copied to clipboard
@SerializedName(value = "id_age_over_18")
val idAgeOver18: VerificationCheckStatus?

The result of verifying that the customer is 18 years of age or older.

Link copied to clipboard
@SerializedName(value = "id_not_expired")
val idNotExpired: VerificationCheckStatus?

The result of checking that the identity document has not expired.

Link copied to clipboard
@SerializedName(value = "id_photo_face_match")
val idPhotoFaceMatch: VerificationCheckStatus?

The result of comparing the document photo against the customer's selfie.

Link copied to clipboard
@SerializedName(value = "id_tamper_detection")
val idTamperDetection: VerificationCheckStatus?

The result of checking the document for signs of tampering.