Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

FillFormFieldsRequest

Properties

NameTypeDescriptionNotes
file_urlstrPublic URL to a PDF document
dataobjectForm field data to fill in the PDF
outputstrReturned document output format[optional] [default to 'base64']
namestrName for the PDF file[optional]
file_base64strPDF document in base64 encoded string format

Example

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]