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