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

1.1 KiB

GraphDataResponse

Response model for graph data endpoint.

Properties

Name Type Description Notes
nodes List[Dict[str, object]]
edges List[Dict[str, object]]
table_rows List[Dict[str, object]]
total_units int

Example

from hindsight_client_api.models.graph_data_response import GraphDataResponse

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

# convert the object into a dict
graph_data_response_dict = graph_data_response_instance.to_dict()
# create an instance of GraphDataResponse from a dict
graph_data_response_from_dict = GraphDataResponse.from_dict(graph_data_response_dict)

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