SessionStatus

public enum SessionStatus : String

Represents the state of the session.

  • The session is active, user can access protected resources.

    Declaration

    Swift

    case active = "active"
  • The session is paused. The user should not be granted access to protected resources but should not be logged out.

    Declaration

    Swift

    case paused = "walkaway"
  • The session has been closed (user has logged out). The user should not be granted access to protected resources.

    Declaration

    Swift

    case closed = "closed"
  • The session is pending (authentication in progress). The user should not be granted access to protected resources.

    Declaration

    Swift

    case pending = "pending"
  • Identification data is being processed (authentication in progress). The user should not be granted access to protected resources.

    Declaration

    Swift

    case identifying = "identifying"
  • Authentication has failed. The user should not be granted access to protected resources.

    Declaration

    Swift

    case failed = "failed"
  • Authentication process has timed out. The user should not be granted access to protected resources.

    Declaration

    Swift

    case time_out = "time_out"
  • The session status is unknown. The user should not be granted access to protected resources

    Declaration

    Swift

    case unknown = "unknown"