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