Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.47 KB

File metadata and controls

33 lines (24 loc) · 1.47 KB

StoreDocumentRequest

Properties

NameTypeDescriptionNotes
file_base64strBase64 encoded PDF file. Required if file_url is not provided.[optional]
file_urlstrPublic HTTPS URL to a PDF file. Required if file_base64 is not provided.[optional]
prefillPrefillParam[optional]
namestrGenerated document name (optional)[optional] [default to '']
outputstrResponse format. `url` returns a public URL to the stored document; `viewer` returns a public URL to the PDF viewer.[optional] [default to 'url']

Example

frompdf_generator_api_client.models.store_document_requestimportStoreDocumentRequest# TODO update the JSON string belowjson="{}"# create an instance of StoreDocumentRequest from a JSON stringstore_document_request_instance=StoreDocumentRequest.from_json(json)
# print the JSON string representation of the objectprint(StoreDocumentRequest.to_json())
# convert the object into a dictstore_document_request_dict=store_document_request_instance.to_dict()
# create an instance of StoreDocumentRequest from a dictstore_document_request_from_dict=StoreDocumentRequest.from_dict(store_document_request_dict)

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