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