| Name | Type | Description | Notes |
|---|
| file_base64 | str | Base64 encoded PDF file. Required if file_url is not provided. | [optional] |
| file_url | str | Public HTTPS URL to a PDF file. Required if file_base64 is not provided. | [optional] |
| prefill | PrefillParam | | [optional] |
| name | str | Generated document name (optional) | [optional] [default to ''] |
| output | str | Response format. `url` returns a public URL to the stored document; `viewer` returns a public URL to the PDF viewer. | [optional] [default to 'url'] |
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]