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