RGLDocumentReaderValidity
Objective-C
@interface RGLDocumentReaderValidity: NSObject
/**
The value's origin source
*/
@property(nonatomic, assign, readonly) RGLResultType sourceType;
/**
Overall validity status of all text fields of this particular field
*/
@property(nonatomic, assign, readonly) RGLCheckResult status;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class DocumentReaderValidity : NSObject
Undocumented
-
The value’s origin source
Declaration
Objective-C
@property (nonatomic, readonly) RGLResultType sourceType;Swift
var sourceType: ResultType { get } -
Overall validity status of all text fields of this particular field
Declaration
Objective-C
@property (nonatomic, readonly) RGLCheckResult status;Swift
var status: CheckResult { get } -
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)init NS_UNAVAILABLE; -
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;Swift
init(json: [AnyHashable : Any], sourceList: [AnyHashable : Any]) -
Undocumented
Declaration
Objective-C
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;Swift
class func initWithJSON(_ json: [AnyHashable : Any], sourceList: [AnyHashable : Any]) -> Self -
Undocumented
Declaration
Objective-C
- (NSDictionary *_Nonnull)jsonDictionary;Swift
func jsonDictionary() -> [AnyHashable : Any]