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