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