Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 938 Bytes

File metadata and controls

29 lines (20 loc) · 938 Bytes

CreateHtmlTemplate

Properties

Name Type Description Notes
template object

Example

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]