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