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