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