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