RGLDocumentReaderJsonResultGroup

Objective-C

@interface RGLDocumentReaderJsonResultGroup : NSObject

@property(nonatomic, assign, readonly) RGLResultType resultType;
@property(nonatomic, assign, readonly) NSInteger lightType;
@property(nonatomic, assign, readonly) NSInteger pageIdx;
@property(nonatomic, strong, readonly, nonnull) NSString *jsonResult;

- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;

@end

Swift

class DocumentReaderJsonResultGroup : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) RGLResultType resultType

    Swift

    var resultType: ResultType { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger lightType

    Swift

    var lightType: Int { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger pageIdx

    Swift

    var pageIdx: Int { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSString *jsonResult

    Swift

    var jsonResult: String { 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]