SaltoAccessDecision

public enum SaltoAccessDecision : UInt8, CustomStringConvertible

Access decision results returned from the Salto JustIN mobile SDK after attempting to open a Salto door.

  • Successful authentication but no information about the operation result.

    Declaration

    Swift

    case AUTH_SUCCESS_UNKNOWN_RESULT = 0
  • Successful authentication and access granted (lock opened).

    Declaration

    Swift

    case AUTH_SUCCESS_ACCESS_GRANTED = 2
  • Successful authentication and access rejected.

    Declaration

    Swift

    case AUTH_SUCCESS_ACCESS_REJECTED = 3
  • Successful authentication and door opened with office mode set.

    Declaration

    Swift

    case AUTH_SUCCESS_DOOR_IN_OFFICE = 6
  • Successful authentication and door closed with office mode removed.

    Declaration

    Swift

    case AUTH_SUCCESS_END_OFFICE = 10
  • Successful authentication and opening roller.

    Declaration

    Swift

    case AUTH_SUCCESS_OPENING_ROLLER = 14
  • Successful authentication and closing roller.

    Declaration

    Swift

    case AUTH_SUCCESS_CLOSING_ROLLER = 16
  • Successful authentication and stop roller.

    Declaration

    Swift

    case AUTH_SUCCESS_STOP_ROLLER = 22
  • Successful authentication and waiting for a second valid key for opening.

    Declaration

    Swift

    case AUTH_SUCCESS_WAIT_SECOND_CARD = 26
  • Successful authentication, access rejected, PIN required. Introduce PIN before key.

    Declaration

    Swift

    case AUTH_SUCCESS_PIN_REQUIRED = 7
  • Successful authentication, access rejected and key should be deleted.

    Declaration

    Swift

    case AUTH_SUCCESS_CANCELLED_KEY = 11
  • Successful authentication, access rejected, fingerprint required. Input fingerprint before key.

    Declaration

    Swift

    case AUTH_SUCCESS_FINGER_REQUIRED = 20
  • Successful authentication, key data was processed successfully. Doesn’t imply any further outcome.

    Declaration

    Swift

    case AUTH_SUCCESS_KEY_PROCESSED = 30
  • Declaration

    Swift

    public var description: String { get }