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