| Name | Type | Description | Notes |
|---|---|---|---|
| body | str | The email's HTML body. May contain variable references. | |
| subject | str | The email's subject. May contain variable references. |
from okta.models.email_content import EmailContent
# TODO update the JSON string below
json = "{}"
# create an instance of EmailContent from a JSON string
email_content_instance = EmailContent.from_json(json)
# print the JSON string representation of the object
print(EmailContent.to_json())
# convert the object into a dict
email_content_dict = email_content_instance.to_dict()
# create an instance of EmailContent from a dict
email_content_from_dict = EmailContent.from_dict(email_content_dict)