Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

FormFillBase64

Properties

NameTypeDescriptionNotes
file_base64strPDF document in base64 encoded string format
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_base64importFormFillBase64# TODO update the JSON string belowjson="{}"# create an instance of FormFillBase64 from a JSON stringform_fill_base64_instance=FormFillBase64.from_json(json)
# print the JSON string representation of the objectprint(FormFillBase64.to_json())
# convert the object into a dictform_fill_base64_dict=form_fill_base64_instance.to_dict()
# create an instance of FormFillBase64 from a dictform_fill_base64_from_dict=FormFillBase64.from_dict(form_fill_base64_dict)

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