VerifyResponse

public struct VerifyResponse : Codable

Response to the request of carrying ID verification of a person.

  • Verification result type.

    Declaration

    Swift

    public typealias VerificationResult = Bool
  • Verification result.

    Declaration

    Swift

    public let status: VerificationResult
  • List of candidates sorted by similarity.

    Declaration

    Swift

    public let candidates: [Candidate]
  • The first from the list of the candidates sorted according to their similarity degree.

    Declaration

    Swift

    public var candidate: Candidate? { get }