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