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