fleet-memory/hindsight-clients/python/hindsight_client_api/docs/OperationResponse.md
Nicolò Boschi e06a6120a3
feat(misc): update clients types, test coverage, improve /health endpoint and add changelog (#70)
* doc: changelog and delete doc info

* others

* others

* fixes

* fixes
2025-12-23 12:49:31 +01:00

1.1 KiB

OperationResponse

Response model for a single async operation.

Properties

Name Type Description Notes
id str
task_type str
items_count int
document_id str
created_at str
status str
error_message str

Example

from hindsight_client_api.models.operation_response import OperationResponse

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

# convert the object into a dict
operation_response_dict = operation_response_instance.to_dict()
# create an instance of OperationResponse from a dict
operation_response_from_dict = OperationResponse.from_dict(operation_response_dict)

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