RGLFile
Objective-C
@interface RGLFile : NSObject
@property(nonatomic, strong, readonly, nonnull) RGLFileData *fileData;
@property(nonatomic, strong, readonly, nonnull) NSString *fileID;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications;
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes pAStatus;
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes readingStatus;
@property(nonatomic, assign, readonly) NSInteger readingTime;
@property(nonatomic, assign, readonly) RGLRFIDDataFileType type;
@property(nonatomic, strong, readonly, nonnull) NSString *typeName;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsText;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsGraphics;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsOriginals;
@property(nonatomic, strong, readonly, nonnull) RGLSecurityObjectCertificates *certificates;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class File : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLFileData *fileDataSwift
var fileData: RGLFileData { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *fileIDSwift
var fileID: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notificationsSwift
var notifications: [NSNumber] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes pAStatusSwift
var pAStatus: RFIDErrorCodes { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes readingStatusSwift
var readingStatus: RFIDErrorCodes { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger readingTimeSwift
var readingTime: Int { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDDataFileType typeSwift
var type: RFIDDataFileType { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *typeNameSwift
var typeName: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsTextSwift
var docFieldsText: [NSNumber] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsGraphicsSwift
var docFieldsGraphics: [NSNumber] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsOriginalsSwift
var docFieldsOriginals: [NSNumber] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLSecurityObjectCertificates *certificatesSwift
var certificates: RGLSecurityObjectCertificates { get } -
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)init NS_UNAVAILABLE; -
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;Swift
init(json: [AnyHashable : Any]) -
Undocumented
Declaration
Objective-C
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;Swift
class func initWithJSON(_ json: [AnyHashable : Any]) -> Self -
Undocumented
Declaration
Objective-C
- (NSDictionary *_Nonnull)jsonDictionary;Swift
func jsonDictionary() -> [AnyHashable : Any]