fleet-memory/hindsight-clients/python/hindsight_client_api/docs/DocumentResponse.md
2025-11-25 19:28:26 +01:00

1.1 KiB

DocumentResponse

Response model for get document endpoint.

Properties

Name Type Description Notes
id str
agent_id str
original_text str
content_hash str
created_at str
updated_at str
memory_unit_count int

Example

from hindsight_client_api.models.document_response import DocumentResponse

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

# convert the object into a dict
document_response_dict = document_response_instance.to_dict()
# create an instance of DocumentResponse from a dict
document_response_from_dict = DocumentResponse.from_dict(document_response_dict)

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