An array of email contacts, each with an email address and optional display name.
| Name | Type | Description | Notes |
|---|
from openapi_client.models.email_address_names import EmailAddressNames
# TODO update the JSON string below
json = "{}"
# create an instance of EmailAddressNames from a JSON string
email_address_names_instance = EmailAddressNames.from_json(json)
# print the JSON string representation of the object
print(EmailAddressNames.to_json())
# convert the object into a dict
email_address_names_dict = email_address_names_instance.to_dict()
# create an instance of EmailAddressNames from a dict
email_address_names_from_dict = EmailAddressNames.from_dict(email_address_names_dict)