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 *fileData
Swift
var fileData: RGLFileData { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *fileID
Swift
var fileID: String { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications
Swift
var notifications: [NSNumber] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes pAStatus
Swift
var pAStatus: RFIDErrorCodes { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDErrorCodes readingStatus
Swift
var readingStatus: RFIDErrorCodes { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger readingTime
Swift
var readingTime: Int { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDDataFileType type
Swift
var type: RFIDDataFileType { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *typeName
Swift
var typeName: String { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsText
Swift
var docFieldsText: [NSNumber] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsGraphics
Swift
var docFieldsGraphics: [NSNumber] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *docFieldsOriginals
Swift
var docFieldsOriginals: [NSNumber] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLSecurityObjectCertificates *certificates
Swift
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]