ExtractFormFieldsRequest
| Name | Type | Description | Notes |
|---|
| file_url | str | Public URL to a PDF document | |
| key_field | KeyFieldParam | | [optional] [default to KeyFieldParam.NAME] |
| file_base64 | str | PDF document in base64 encoded string format | |
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]