RGLDocFeature

Objective-C

@interface RGLDocFeature : NSObject

@property(nonatomic, strong, readonly, nullable) RGLBytesData *data;
@property(nonatomic, strong, readonly, nullable) NSNumber *type;

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

@end

Swift

class RGLDocFeature : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nullable) RGLBytesData *data

    Swift

    var data: RGLBytesData? { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nullable) NSNumber *type

    Swift

    var type: NSNumber? { get }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithJSON:(NSDictionary *)json;

    Swift

    init(json: [AnyHashable : Any])
  • Undocumented

    Declaration

    Objective-C

    + (instancetype)initWithJSON:(NSDictionary *)json;

    Swift

    class func initWithJSON(_ json: [AnyHashable : Any]) -> Self
  • Undocumented

    Declaration

    Objective-C

    - (NSDictionary *)jsonDictionary;

    Swift

    func jsonDictionary() -> [AnyHashable : Any]