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