| Name | Type | Description | Notes |
|---|
| file_url | str | Public URL to a PDF document | |
| data | object | Form field data to fill in the PDF | |
| output | str | Returned document output format | [optional] [default to 'base64'] |
| name | str | Name for the PDF file | [optional] |
| file_base64 | str | PDF document in base64 encoded string format | |
frompdf_generator_api_client.models.fill_form_fields_requestimportFillFormFieldsRequest# TODO update the JSON string belowjson="{}"# create an instance of FillFormFieldsRequest from a JSON stringfill_form_fields_request_instance=FillFormFieldsRequest.from_json(json)
# print the JSON string representation of the objectprint(FillFormFieldsRequest.to_json())
# convert the object into a dictfill_form_fields_request_dict=fill_form_fields_request_instance.to_dict()
# create an instance of FillFormFieldsRequest from a dictfill_form_fields_request_from_dict=FillFormFieldsRequest.from_dict(fill_form_fields_request_dict)[Back to Model list][Back to API list][Back to README]