an email address
Name | Type | Description | Notes |
---|---|---|---|
str | an email address | [optional] |
from openapi_client.models.email_address import EmailAddress
# TODO update the JSON string below
json = "{}"
# create an instance of EmailAddress from a JSON string
email_address_instance = EmailAddress.from_json(json)
# print the JSON string representation of the object
print EmailAddress.to_json()
# convert the object into a dict
email_address_dict = email_address_instance.to_dict()
# create an instance of EmailAddress from a dict
email_address_form_dict = email_address.from_dict(email_address_dict)