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