Request body for content extraction
| Name | Type | Description | Notes |
|---|---|---|---|
| pages | List[PageInput] | Array of pages to extract content from. Must contain 1-10 URLs. Each URL must be a valid HTTPS URL. | |
| timeout | float | Optional timeout in seconds for the extraction operation | [optional] |
| format | str | (EXPERIMENTAL) Format to serialize the API response as. The exact contents and structure of markdown output is still being worked on - please send your feedback! | [optional] [default to 'json'] |
from openapi_client.models.extract_request import ExtractRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ExtractRequest from a JSON string
extract_request_instance = ExtractRequest.from_json(json)
# print the JSON string representation of the object
print(ExtractRequest.to_json())
# convert the object into a dict
extract_request_dict = extract_request_instance.to_dict()
# create an instance of ExtractRequest from a dict
extract_request_from_dict = ExtractRequest.from_dict(extract_request_dict)