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