AccessMode
public enum AccessMode : UInt8, CustomStringConvertible
Enum describing the mode for access
-
Attempting to gain access (e.g. Open a Door)
Declaration
Swift
case access = 0
-
Attempting to gain access via a Mobile Reader, which requires confirmation from the operator (e.g. the Security Guard must approve you)
Declaration
Swift
case challenge = 1
-
Mobile Reader is updating location during Mobile Evacuation
Declaration
Swift
case evac = 2
-
Mobile Reader is reading credential to locate a cardholder record
Declaration
Swift
case search = 3
-
Returns a text description of the AccessMode
Declaration
Swift
public var description: String { get }