RGLAuthenticityCheck
Objective-C
@interface RGLAuthenticityCheck : NSObject
@property(nonatomic, assign, readonly) RGLAuthenticity type;
@property(nonatomic, strong, readonly, nonnull) NSString *typeName;
@property(nonatomic, assign, readonly) RGLCheckResult status;
@property(nonatomic, strong, readonly, nullable) NSArray <RGLAuthenticityElement *> *elements;
@property(nonatomic, assign, readonly) NSInteger pageIndex;
- (instancetype _Nonnull)initWithAuthenticity:(RGLAuthenticity)type elements:(NSArray <RGLAuthenticityElement *> *_Nullable)elements pageIndex:(NSInteger)pageIndex;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class AuthenticityCheck : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLAuthenticity typeSwift
var type: Authenticity { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *typeNameSwift
var typeName: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLCheckResult statusSwift
var status: CheckResult { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nullable) NSArray <RGLAuthenticityElement *> *elementsSwift
var elements: [RGLAuthenticityElement]? { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger pageIndexSwift
var pageIndex: Int { get } -
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithAuthenticity:(RGLAuthenticity)type elements:(NSArray <RGLAuthenticityElement *> *_Nullable)elements pageIndex:(NSInteger)pageIndex;Swift
init(authenticity type: Authenticity, elements: [RGLAuthenticityElement]?, pageIndex: Int) -
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]