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