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