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