Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

File metadata and controls

29 lines (20 loc) · 1.21 KB

ExtractFormFields200Response

Properties

Name Type Description Notes
response Dict[str, ExtractFormFields200ResponseResponseValue] Form fields extracted from the PDF document [optional]

Example

from pdf_generator_api_client.models.extract_form_fields200_response import ExtractFormFields200Response

# TODO update the JSON string below
json = "{}"
# create an instance of ExtractFormFields200Response from a JSON string
extract_form_fields200_response_instance = ExtractFormFields200Response.from_json(json)
# print the JSON string representation of the object
print(ExtractFormFields200Response.to_json())

# convert the object into a dict
extract_form_fields200_response_dict = extract_form_fields200_response_instance.to_dict()
# create an instance of ExtractFormFields200Response from a dict
extract_form_fields200_response_from_dict = ExtractFormFields200Response.from_dict(extract_form_fields200_response_dict)

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