| Name | Type | Description | Notes |
|---|---|---|---|
| batch_id | str | ||
| data_requests | List[SubmissionDataRequest] | ||
| editable | bool | ||
| expired | bool | ||
| expires_at | str | ||
| id | str | ||
| json_schema_errors | List[str] | ||
| metadata | object | ||
| password | str | ||
| processed_at | str | ||
| state | str | ||
| template_id | str | ||
| template_type | str | ||
| template_version | str | ||
| test | bool | ||
| truncated_text | object | ||
| pdf_hash | str | ||
| download_url | str | ||
| permanent_download_url | str | ||
| preview_download_url | str | ||
| preview_generated_at | str | ||
| audit_trail_download_url | str | ||
| actions | List[SubmissionAction] | ||
| source | str | ||
| referrer | str | ||
| data | object |
from docspring.models.submission import Submission
# TODO update the JSON string below
json = "{}"
# create an instance of Submission from a JSON string
submission_instance = Submission.from_json(json)
# print the JSON string representation of the object
print(Submission.to_json())
# convert the object into a dict
submission_dict = submission_instance.to_dict()
# create an instance of Submission from a dict
submission_from_dict = Submission.from_dict(submission_dict)