Response containing extracted content
| 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] |
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)