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