Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.53 KB

File metadata and controls

33 lines (24 loc) · 1.53 KB

GenerateDocumentBatchRequest

Properties

Name Type Description Notes
template List[TemplateParam] [optional]
format FormatParam [optional] [default to FormatParam.PDF]
output OutputParam [optional] [default to OutputParam.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_request import GenerateDocumentBatchRequest

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

# convert the object into a dict
generate_document_batch_request_dict = generate_document_batch_request_instance.to_dict()
# create an instance of GenerateDocumentBatchRequest from a dict
generate_document_batch_request_from_dict = GenerateDocumentBatchRequest.from_dict(generate_document_batch_request_dict)

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