Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 980 Bytes

File metadata and controls

29 lines (20 loc) · 980 Bytes

EmailAddressNames

An array of email contacts, each with an email address and optional display name.

Properties

Name Type Description Notes

Example

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)

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