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