RGLSecurityObject

Objective-C

@interface RGLSecurityObject : NSObject

@property(nonatomic, assign, readonly) NSInteger fileReference;
@property(nonatomic, strong, readonly, nonnull) NSString *objectType;
@property(nonatomic, assign, readonly) NSInteger version;
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLSignerInfo *> *signerInfos;

/// The list of remarks occured during the scanning procedure.
///
/// Each element is a `NSNumber` containing a `NSUInteger`, that belongs to the `enum eLDS_ParsingErrorCodes`
@property(nonatomic, strong, readonly, nonnull) NSArray<NSNumber *> *notifications;

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

@end

Swift

class SecurityObject : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger fileReference

    Swift

    var fileReference: Int { get }
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    var objectType: String { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger version

    Swift

    var version: Int { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSArray <RGLSignerInfo *> *signerInfos

    Swift

    var signerInfos: [RGLSignerInfo] { get }
  • The list of remarks occured during the scanning procedure.

    Each element is a NSNumber containing a NSUInteger, that belongs to the enum eLDS_ParsingErrorCodes

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nonnull) NSArray<NSNumber *> *notifications;

    Swift

    var notifications: [NSNumber] { 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]