RGLValidity

Objective-C

@interface RGLValidity : NSObject

@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *notAfter;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *notBefore;

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

@end

Swift

class Validity : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *notAfter

    Swift

    var notAfter: RGLRFIDValue { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *notBefore

    Swift

    var notBefore: RGLRFIDValue { 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]