| Name | Type | Description | Notes |
|---|---|---|---|
| response | Dict[str, InlineObject14ResponseValue] | Form fields extracted from the PDF document | [optional] |
from pdf_generator_api_client.models.inline_object14 import InlineObject14
# TODO update the JSON string below
json = "{}"
# create an instance of InlineObject14 from a JSON string
inline_object14_instance = InlineObject14.from_json(json)
# print the JSON string representation of the object
print(InlineObject14.to_json())
# convert the object into a dict
inline_object14_dict = inline_object14_instance.to_dict()
# create an instance of InlineObject14 from a dict
inline_object14_from_dict = InlineObject14.from_dict(inline_object14_dict)