Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

EmailPreviewLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
content_source HrefObject [optional]
template HrefObject [optional]
test HrefObject [optional]
default_content HrefObject [optional]

Example

from okta.models.email_preview_links import EmailPreviewLinks

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

# convert the object into a dict
email_preview_links_dict = email_preview_links_instance.to_dict()
# create an instance of EmailPreviewLinks from a dict
email_preview_links_from_dict = EmailPreviewLinks.from_dict(email_preview_links_dict)

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