RGLDocumentReaderAuthenticityResult
Objective-C
@interface RGLDocumentReaderAuthenticityResult : NSObject
@property(nonatomic, assign, readonly) RGLCheckResult status RGL_DEPRECATED(7.6, "Instead, use an instance of the `RGLDocumentReaderResultsStatus` class, the `detailsOptical` container, and the `security` property on it.");
@property(nonatomic, strong, readonly, nullable) NSArray <RGLAuthenticityCheck *> *checks;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithAuthenticityChecks:(NSArray <RGLAuthenticityCheck *> *_Nullable)checks;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class DocumentReaderAuthenticityResult : NSObject
Undocumented
-
Deprecated
Deprecated in DocumentReader 7.6. Instead, use an instance of the
RGLDocumentReaderResultsStatusclass, thedetailsOpticalcontainer, and thesecurityproperty on it.Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLCheckResult statusSwift
var status: CheckResult { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nullable) NSArray <RGLAuthenticityCheck *> *checksSwift
var checks: [RGLAuthenticityCheck]? { get } -
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)init NS_UNAVAILABLE; -
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithAuthenticityChecks:(NSArray <RGLAuthenticityCheck *> *_Nullable)checks;Swift
init(authenticityChecks checks: [RGLAuthenticityCheck]?) -
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]