RGLPAAttribute
Objective-C
@interface RGLPAAttribute : NSObject
@property(nonatomic, strong, readonly, nullable) NSString *value;
@property(nonatomic, strong, readonly, nullable) NSString *type;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
@end
Swift
class PAAttribute : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nullable) NSString *value
Swift
var value: String? { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nullable) NSString *type
Swift
var type: 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