RGLTAChallenge

Objective-C

@interface RGLTAChallenge : NSObject

@property(nonatomic, strong, readonly, nonnull) NSData *data;
@property(nonatomic, strong, readonly, nonnull) NSString *auxPCD;
@property(nonatomic, strong, readonly, nonnull) NSString *challengePICC;
@property(nonatomic, strong, readonly, nonnull) NSString *hashPK;
@property(nonatomic, strong, readonly, nonnull) NSString *idPICC;

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

@end

Swift

class TAChallenge : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSData *data

    Swift

    var data: Data { get }
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    var auxPCD: String { get }
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    var challengePICC: String { get }
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    var hashPK: String { get }
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    var idPICC: String { 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