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