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