Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

MergeEmailPayload

Properties

Name Type Description Notes
merge_file MessageAttachment
content EmailContent
options Options [optional]

Example

from ElasticEmail.models.merge_email_payload import MergeEmailPayload

# TODO update the JSON string below
json = "{}"
# create an instance of MergeEmailPayload from a JSON string
merge_email_payload_instance = MergeEmailPayload.from_json(json)
# print the JSON string representation of the object
print(MergeEmailPayload.to_json())

# convert the object into a dict
merge_email_payload_dict = merge_email_payload_instance.to_dict()
# create an instance of MergeEmailPayload from a dict
merge_email_payload_from_dict = MergeEmailPayload.from_dict(merge_email_payload_dict)

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