Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.78 KB

File metadata and controls

34 lines (25 loc) · 1.78 KB

GenerateDocumentBatchAsynchronousRequest

Properties

Name Type Description Notes
template List[TemplateParam] [optional]
callback CallbackParam [optional]
format FormatParam [optional] [default to FormatParam.PDF]
output AsyncOutputParam [optional] [default to AsyncOutputParam.BASE64]
name str Generated document name (optional) [optional] [default to '']
testing bool When set to true the generation is not counted as merge (monthly usage), but a large PREVIEW stamp is added. [optional] [default to False]

Example

from pdf_generator_api_client.models.generate_document_batch_asynchronous_request import GenerateDocumentBatchAsynchronousRequest

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

# convert the object into a dict
generate_document_batch_asynchronous_request_dict = generate_document_batch_asynchronous_request_instance.to_dict()
# create an instance of GenerateDocumentBatchAsynchronousRequest from a dict
generate_document_batch_asynchronous_request_from_dict = GenerateDocumentBatchAsynchronousRequest.from_dict(generate_document_batch_asynchronous_request_dict)

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