| Name |
Type |
Description |
Notes |
| add_data_request_submission_id_footers |
bool |
|
|
| allow_additional_properties |
bool |
|
|
| description |
str |
|
|
| document_filename |
str |
|
|
| document_md5 |
str |
|
|
| document_parse_error |
bool |
|
|
| document_processed |
bool |
|
|
| document_state |
str |
|
|
| document_url |
str |
|
|
| editable_submissions |
bool |
|
|
| embed_domains |
str |
|
|
| encrypt_pdfs_password |
str |
|
|
| encrypt_pdfs |
bool |
|
|
| expiration_interval |
str |
|
|
| expire_after |
int |
|
|
| expire_submissions |
bool |
|
|
| external_predefined_fields_template_id |
str |
|
|
| external_predefined_fields_template_name |
str |
|
|
| first_template |
bool |
|
|
| id |
str |
|
|
| locked |
bool |
|
|
| merge_audit_trail_pdf |
bool |
|
|
| name |
str |
|
|
| page_count |
int |
|
|
| page_dimensions |
List[List[float]] |
|
|
| parent_folder_id |
str |
|
|
| path |
str |
|
|
| permanent_document_url |
str |
|
|
| public_submissions |
bool |
|
|
| public_web_form |
bool |
|
|
| redirect_url |
str |
|
|
| slack_webhook_url |
str |
|
|
| template_type |
str |
|
|
| updated_at |
str |
|
|
| version_published_at |
str |
|
|
| version |
str |
|
|
| webhook_url |
str |
|
|
| demo |
bool |
|
|
| latest_version |
str |
|
|
| last_changed_at |
str |
|
|
| last_changed_by_type |
str |
|
|
| last_changed_by_id |
str |
|
|
from docspring.models.template_preview import TemplatePreview
# TODO update the JSON string below
json = "{}"
# create an instance of TemplatePreview from a JSON string
template_preview_instance = TemplatePreview.from_json(json)
# print the JSON string representation of the object
print(TemplatePreview.to_json())
# convert the object into a dict
template_preview_dict = template_preview_instance.to_dict()
# create an instance of TemplatePreview from a dict
template_preview_from_dict = TemplatePreview.from_dict(template_preview_dict)
[Back to Model list] [Back to API list] [Back to README]