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

1.1 KiB

EntityStateResponse

Current mental model of an entity.

Properties

Name Type Description Notes
entity_id str
canonical_name str
observations List[EntityObservationResponse]

Example

from hindsight_client_api.models.entity_state_response import EntityStateResponse

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

# convert the object into a dict
entity_state_response_dict = entity_state_response_instance.to_dict()
# create an instance of EntityStateResponse from a dict
entity_state_response_from_dict = EntityStateResponse.from_dict(entity_state_response_dict)

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