Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1011 Bytes

File metadata and controls

31 lines (22 loc) · 1011 Bytes

EmailData

Properties

Name Type Description Notes
preview EmailView [optional]
attachments List[FileInfo] Attachments sent with the email [optional]
status EmailStatus [optional]

Example

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)

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