Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1015 Bytes

File metadata and controls

31 lines (21 loc) · 1015 Bytes

EmailAddressTypes

Properties

Name Type Description Notes
email str The email address.
name str Name to use for the sending contact. [optional]

Example

from openapi_client.models.email_address_types import EmailAddressTypes

# TODO update the JSON string below
json = "{}"
# create an instance of EmailAddressTypes from a JSON string
email_address_types_instance = EmailAddressTypes.from_json(json)
# print the JSON string representation of the object
print(EmailAddressTypes.to_json())

# convert the object into a dict
email_address_types_dict = email_address_types_instance.to_dict()
# create an instance of EmailAddressTypes from a dict
email_address_types_from_dict = EmailAddressTypes.from_dict(email_address_types_dict)

[Back to Model list] [Back to API list] [Back to README]