Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1001 Bytes

File metadata and controls

32 lines (23 loc) · 1001 Bytes

TemplateFiles

Properties

Name Type Description Notes
document_id str [optional]
document_name str [optional]
order int [optional]
page_count int [optional]

Example

from boldsign.models.template_files import TemplateFiles

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

# convert the object into a dict
template_files_dict = template_files_instance.to_dict()
# create an instance of TemplateFiles from a dict
template_files_from_dict = TemplateFiles.from_dict(template_files_dict)

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