| 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. | |
| links | object | [optional] |
from okta.models.email_default_content import EmailDefaultContent
# TODO update the JSON string below
json = "{}"
# create an instance of EmailDefaultContent from a JSON string
email_default_content_instance = EmailDefaultContent.from_json(json)
# print the JSON string representation of the object
print(EmailDefaultContent.to_json())
# convert the object into a dict
email_default_content_dict = email_default_content_instance.to_dict()
# create an instance of EmailDefaultContent from a dict
email_default_content_from_dict = EmailDefaultContent.from_dict(email_default_content_dict)