DBTEAMGroupMemberInfoSerializer
Objective-C
@interface DBTEAMGroupMemberInfoSerializer : NSObject
Swift
class DBTEAMGroupMemberInfoSerializer : NSObject
The serialization class for the GroupMemberInfo struct.
-
Serializes
DBTEAMGroupMemberInfoinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMGroupMemberInfo *)instance;Swift
class func serialize(_ instance: DBTEAMGroupMemberInfo) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMGroupMemberInfoAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMGroupMemberInfoAPI object. -
Deserializes
DBTEAMGroupMemberInfoinstances.Declaration
Objective-C
+ (nonnull DBTEAMGroupMemberInfo *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMGroupMemberInfoParameters
dictA json-compatible dictionary representation of the
DBTEAMGroupMemberInfoAPI object.Return Value
An instantiation of the
DBTEAMGroupMemberInfoobject.
View on GitHub
DBTEAMGroupMemberInfoSerializer Class Reference