Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1015 Bytes

File metadata and controls

29 lines (20 loc) · 1015 Bytes

InlineObject14

Properties

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

Example

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)

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