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