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