RGLCertificateChain
Objective-C
@interface RGLCertificateChain : NSObject
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *extensions;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *fileName;
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuer;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications;
@property(nonatomic, assign, readonly) NSInteger origin;
@property(nonatomic, assign, readonly) double paStatus;
@property(nonatomic, strong, readonly, nonnull) NSString *serialNumber;
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithm;
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *subject;
@property(nonatomic, strong, readonly, nonnull) NSString *subjectPKAlgorithm;
@property(nonatomic, assign, readonly) RGLRFIDCertificateType type;
@property(nonatomic, strong, readonly, nonnull) RGLValidity *validity;
@property(nonatomic, assign, readonly) NSInteger version;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class CertificateChain : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *extensionsSwift
var extensions: [RGLExtension] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *fileNameSwift
var fileName: RGLRFIDValue { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuerSwift
var issuer: RGLAuthority { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notificationsSwift
var notifications: [NSNumber] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger originSwift
var origin: Int { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) double paStatusSwift
var paStatus: Double { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *serialNumberSwift
var serialNumber: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithmSwift
var signatureAlgorithm: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *subjectSwift
var subject: RGLAuthority { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *subjectPKAlgorithmSwift
var subjectPKAlgorithm: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDCertificateType typeSwift
var type: RFIDCertificateType { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLValidity *validitySwift
var validity: RGLValidity { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger versionSwift
var version: Int { 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]