DBTEAMLOGDeviceManagementEnabledTypeSerializer
Objective-C
@interface DBTEAMLOGDeviceManagementEnabledTypeSerializer : NSObject
Swift
class DBTEAMLOGDeviceManagementEnabledTypeSerializer : NSObject
The serialization class for the DeviceManagementEnabledType
struct.
-
Serializes
DBTEAMLOGDeviceManagementEnabledType
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGDeviceManagementEnabledType *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGDeviceManagementEnabledType) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGDeviceManagementEnabledType
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGDeviceManagementEnabledType
API object. -
Deserializes
DBTEAMLOGDeviceManagementEnabledType
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGDeviceManagementEnabledType *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGDeviceManagementEnabledType
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGDeviceManagementEnabledType
API object.Return Value
An instantiation of the
DBTEAMLOGDeviceManagementEnabledType
object.