Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 925 Bytes

File metadata and controls

29 lines (20 loc) · 925 Bytes

UpdatePdfTemplate

Properties

Name Type Description Notes
template object

Example

from docspring.models.update_pdf_template import UpdatePdfTemplate

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

# convert the object into a dict
update_pdf_template_dict = update_pdf_template_instance.to_dict()
# create an instance of UpdatePdfTemplate from a dict
update_pdf_template_from_dict = UpdatePdfTemplate.from_dict(update_pdf_template_dict)

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