Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

ExtractResponse

Response containing extracted content

Properties

Name Type Description Notes
meta Meta
data List[PageOutput] Array of extracted page content
errors List[ErrorDetail] Optional array of errors that occurred during extraction [optional]

Example

from openapi_client.models.extract_response import ExtractResponse

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

# convert the object into a dict
extract_response_dict = extract_response_instance.to_dict()
# create an instance of ExtractResponse from a dict
extract_response_from_dict = ExtractResponse.from_dict(extract_response_dict)

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