RGLDeviceRetrievalMethod

Objective-C

@interface RGLDeviceRetrievalMethod : NSObject

@property (nonatomic, assign) RGLeMDLDeviceRetrieval type;
@property (nonatomic, strong, nullable) NSNumber *version;
@property (nonatomic, strong, nullable) NSNumber *cmdMaxLength;
@property (nonatomic, strong, nullable) NSNumber *respMaxLength;
@property (nonatomic, strong, nullable) NSNumber *clientModeSupport;
@property (nonatomic, strong, nullable) NSString *clientModeUUID;
@property (nonatomic, strong, nullable) NSNumber *serverModeSupport;
@property (nonatomic, strong, nullable) NSString *serverModeUUID;

- (NSDictionary<NSString *, id> *)toJSON;
- (instancetype)initWithJSON:(NSDictionary<NSString *, id> *)json;

@end

Swift

class DeviceRetrievalMethod : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic) RGLeMDLDeviceRetrieval type

    Swift

    var type: eMDLDeviceRetrieval { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *version

    Swift

    var version: NSNumber? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *cmdMaxLength

    Swift

    var cmdMaxLength: NSNumber? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *respMaxLength

    Swift

    var respMaxLength: NSNumber? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *clientModeSupport

    Swift

    var clientModeSupport: NSNumber? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *clientModeUUID

    Swift

    var clientModeUUID: String? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *serverModeSupport

    Swift

    var serverModeSupport: NSNumber? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *serverModeUUID

    Swift

    var serverModeUUID: String? { get set }
  • Undocumented

    Declaration

    Objective-C

    - (NSDictionary<NSString *, id> *)toJSON;

    Swift

    func toJSON() -> [String : Any]
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithJSON:(NSDictionary<NSString *, id> *)json;

    Swift

    init(json: [String : Any])