RGLDocReaderVersion
Objective-C
@interface RGLDocReaderVersion : NSObject
Swift
class DocReaderVersion : NSObject
Interface contains properties to get the information about the SDK
-
A version of the API framework
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *api;Swift
var api: String? { get set } -
A version of the Core framework
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *core;Swift
var core: String? { get set } -
A type of the Core framework
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *coreMode;Swift
var coreMode: String? { get set } -
A version of the database
Declaration
Objective-C
@property (nonatomic, strong, nonnull) RGLDocReaderDocumentsDatabase *database;Swift
var database: DocReaderDocumentsDatabase { get set } -
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