Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

ExtractFormFieldsRequest

Properties

NameTypeDescriptionNotes
file_urlstrPublic URL to a PDF document
key_fieldKeyFieldParam[optional] [default to KeyFieldParam.NAME]
file_base64strPDF document in base64 encoded string format

Example

frompdf_generator_api_client.models.extract_form_fields_requestimportExtractFormFieldsRequest# TODO update the JSON string belowjson="{}"# create an instance of ExtractFormFieldsRequest from a JSON stringextract_form_fields_request_instance=ExtractFormFieldsRequest.from_json(json)
# print the JSON string representation of the objectprint(ExtractFormFieldsRequest.to_json())
# convert the object into a dictextract_form_fields_request_dict=extract_form_fields_request_instance.to_dict()
# create an instance of ExtractFormFieldsRequest from a dictextract_form_fields_request_from_dict=ExtractFormFieldsRequest.from_dict(extract_form_fields_request_dict)

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