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