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