| Name |
Type |
Description |
Notes |
| template |
object |
|
|
from docspring.models.update_html_template import UpdateHtmlTemplate
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateHtmlTemplate from a JSON string
update_html_template_instance = UpdateHtmlTemplate.from_json(json)
# print the JSON string representation of the object
print(UpdateHtmlTemplate.to_json())
# convert the object into a dict
update_html_template_dict = update_html_template_instance.to_dict()
# create an instance of UpdateHtmlTemplate from a dict
update_html_template_from_dict = UpdateHtmlTemplate.from_dict(update_html_template_dict)
[Back to Model list] [Back to API list] [Back to README]