Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

EmailPreview

Properties

Name Type Description Notes
body str The email's HTML body [optional] [readonly]
subject str The email's subject [optional] [readonly]
links EmailPreviewLinks [optional]

Example

from okta.models.email_preview import EmailPreview

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

# convert the object into a dict
email_preview_dict = email_preview_instance.to_dict()
# create an instance of EmailPreview from a dict
email_preview_from_dict = EmailPreview.from_dict(email_preview_dict)

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