RGLInitializationResponse
Objective-C
@interface RGLInitializationResponse : NSObject
typedef NS_ENUM(NSInteger, RGLLicensingResult) {
RGLLicensingResultOK = 0,
RGLLicensingResultLicenseAbsentOrCorrupted = 1,
RGLLicensingResultInvalidDate = 2,
RGLLicensingResultInvalidVersion = 3,
RGLLicensingResultInvalidDeviceID = 4,
RGLLicensingResultInvalidSystemOrAppID = 5,
RGLLicensingResultNoCapabilities = 6,
RGLLicensingResultNoAuthenticity = 7,
RGLLicensingResultNoDatabase = 10,
RGLLicensingResultDatabaseIncorrect = 11
};
@property (nonatomic, assign, readonly) BOOL status;
@property (nonatomic, strong, readonly) NSString *message;
@property (nonatomic, assign, readonly) BOOL showLogo;
@property (nonatomic, assign, readonly) BOOL rfidAvailable;
@property (nonatomic, strong, readonly) NSError *error;
- (instancetype)initWithJSON:(NSDictionary *)json;
+ (instancetype)initWithJSON:(NSDictionary *)json;
@end
Swift
class InitializationResponse : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) BOOL statusSwift
var status: Bool { get } -
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *messageSwift
var message: String! { get } -
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) BOOL showLogoSwift
var showLogo: Bool { get } -
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) BOOL rfidAvailableSwift
var rfidAvailable: Bool { get } -
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSError *errorSwift
var error: Error! { get } -
Undocumented
Declaration
Objective-C
- (instancetype)initWithJSON:(NSDictionary *)json;Swift
init!(json: [AnyHashable : Any]!) -
Undocumented
Declaration
Objective-C
+ (instancetype)initWithJSON:(NSDictionary *)json;Swift
class func initWithJSON(_ json: [AnyHashable : Any]!) -> Self!