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