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