Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

BatchGeneratePdfs201Response

Properties

Name Type Description Notes
status str
error str [optional]
errors List[str] [optional]
submission_batch SubmissionBatch
submissions List[object]

Example

from docspring.models.batch_generate_pdfs201_response import BatchGeneratePdfs201Response

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

# convert the object into a dict
batch_generate_pdfs201_response_dict = batch_generate_pdfs201_response_instance.to_dict()
# create an instance of BatchGeneratePdfs201Response from a dict
batch_generate_pdfs201_response_from_dict = BatchGeneratePdfs201Response.from_dict(batch_generate_pdfs201_response_dict)

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