RGLRFIDTerminalType
Objective-C
NS_ENUM(NSInteger, RGLRFIDTerminalType) {
/// Not defined
RGLRFIDTerminalTypeUndefined = 0,
/// Inspection system
RGLRFIDTerminalTypeInspectionSystem = 1,
/// Authentication terminal
RGLRFIDTerminalTypeAuthenticationTerminal = 2,
/// Signature terminal
RGLRFIDTerminalTypeSignatureTerminal = 3,
/// Unauthenticated terminal
RGLRFIDTerminalTypeUnauthenticatedTerminal = 4
}
Swift
enum RFIDTerminalType : Int, @unchecked Sendable
Undocumented
-
Not defined
Declaration
Objective-C
RGLRFIDTerminalTypeUndefined = 0
Swift
case undefined = 0
-
Inspection system
Declaration
Objective-C
RGLRFIDTerminalTypeInspectionSystem = 1
Swift
case inspectionSystem = 1
-
Authentication terminal
Declaration
Objective-C
RGLRFIDTerminalTypeAuthenticationTerminal = 2
Swift
case authenticationTerminal = 2
-
Signature terminal
Declaration
Objective-C
RGLRFIDTerminalTypeSignatureTerminal = 3
Swift
case signatureTerminal = 3
-
Unauthenticated terminal
Declaration
Objective-C
RGLRFIDTerminalTypeUnauthenticatedTerminal = 4
Swift
case unauthenticatedTerminal = 4