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