| Name | Type | Description | Notes |
|---|---|---|---|
| preview | EmailView | [optional] | |
| attachments | List[FileInfo] | Attachments sent with the email | [optional] |
| status | EmailStatus | [optional] |
from ElasticEmail.models.email_data import EmailData
# TODO update the JSON string below
json = "{}"
# create an instance of EmailData from a JSON string
email_data_instance = EmailData.from_json(json)
# print the JSON string representation of the object
print(EmailData.to_json())
# convert the object into a dict
email_data_dict = email_data_instance.to_dict()
# create an instance of EmailData from a dict
email_data_from_dict = EmailData.from_dict(email_data_dict)