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