Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

EmailDefaultContent

Properties

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]

Example

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)

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