VerifyResponse

@JsonClass(generateAdapter = true)
data class VerifyResponse(@Json(name = "status") val status: Boolean, @Json(name = "candidates") val candidates: List<Candidate>)

Response model of the verify query.

Constructors

Link copied to clipboard
constructor(@Json(name = "status") status: Boolean, @Json(name = "candidates") candidates: List<Candidate>)

Properties

Link copied to clipboard

List of the candidates sorted according to their similarity degree.

Link copied to clipboard

Binary result of verification. True if user verified.