Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

EmailTemplateEmbedded

Properties

Name Type Description Notes
settings EmailSettings [optional]
customization_count int [optional]

Example

from okta.models.email_template_embedded import EmailTemplateEmbedded

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

# convert the object into a dict
email_template_embedded_dict = email_template_embedded_instance.to_dict()
# create an instance of EmailTemplateEmbedded from a dict
email_template_embedded_from_dict = EmailTemplateEmbedded.from_dict(email_template_embedded_dict)

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