fleet-memory/hindsight-clients/python/hindsight_client_api/docs/RecallResponse.md
2025-11-27 16:22:16 +01:00

1.1 KiB

RecallResponse

Response model for recall endpoints.

Properties

Name Type Description Notes
results List[RecallResult]
trace Dict[str, object] [optional]
entities Dict[str, EntityStateResponse] [optional]

Example

from hindsight_client_api.models.recall_response import RecallResponse

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

# convert the object into a dict
recall_response_dict = recall_response_instance.to_dict()
# create an instance of RecallResponse from a dict
recall_response_from_dict = RecallResponse.from_dict(recall_response_dict)

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