Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

FormFillUrl

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]

Example

frompdf_generator_api_client.models.form_fill_urlimportFormFillUrl# TODO update the JSON string belowjson="{}"# create an instance of FormFillUrl from a JSON stringform_fill_url_instance=FormFillUrl.from_json(json)
# print the JSON string representation of the objectprint(FormFillUrl.to_json())
# convert the object into a dictform_fill_url_dict=form_fill_url_instance.to_dict()
# create an instance of FormFillUrl from a dictform_fill_url_from_dict=FormFillUrl.from_dict(form_fill_url_dict)

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