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