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