Outcome

@objc
public enum Outcome : Int, Codable

Describes the outcome of the session

  • The session finished successfully

    Declaration

    Swift

    case success
  • The session didn’t receive enough positive results to make a decision and it timed out

    Declaration

    Swift

    case failNumberOfResults
  • The session failed

    Declaration

    Swift

    case unknownFailure
  • The session was cancelled

    Declaration

    Swift

    case cancel
  • The session failed to ascertain that the received images were of genuine user in front of the camera

    Declaration

    Swift

    case failAntiSpoofingChallenge
  • The session outcome is inconclusive because it’s still waiting for more images

    Declaration

    Swift

    case waiting
  • The session failed because Ver-ID is not loaded

    Declaration

    Swift

    case failNotLoaded
  • One of the detection/recognition library calls returned an error

    Declaration

    Swift

    case detRecLibFailure
  • Face was initially detected but the user has moved away from the camera

    Declaration

    Swift

    case faceLost
  • The session collected faces but the authentication failed

    Declaration

    Swift

    case notAuthenticated
  • The session is processing the collected information

    Declaration

    Swift

    case processing