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