Details for an Email
Name | Type | Description | Notes |
---|---|---|---|
to | str | The Contact whom is the primary recipient of this email. | |
var_from | str | The contact whom is the this email is from. | |
subject | str | The subject or title of the email | |
body | str | The main email contents. |
from openapi_client.models.send_mail import SendMail
# TODO update the JSON string below
json = "{}"
# create an instance of SendMail from a JSON string
send_mail_instance = SendMail.from_json(json)
# print the JSON string representation of the object
print SendMail.to_json()
# convert the object into a dict
send_mail_dict = send_mail_instance.to_dict()
# create an instance of SendMail from a dict
send_mail_form_dict = send_mail.from_dict(send_mail_dict)