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