fleet-memory/hindsight-clients/python/hindsight_client_api/docs/BankStatsResponse.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.3 KiB

BankStatsResponse

Response model for bank statistics endpoint.

Properties

Name Type Description Notes
bank_id str
total_nodes int
total_links int
total_documents int
nodes_by_fact_type Dict[str, int]
links_by_link_type Dict[str, int]
links_by_fact_type Dict[str, int]
links_breakdown Dict[str, Dict[str, int]]
pending_operations int
failed_operations int

Example

from hindsight_client_api.models.bank_stats_response import BankStatsResponse

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

# convert the object into a dict
bank_stats_response_dict = bank_stats_response_instance.to_dict()
# create an instance of BankStatsResponse from a dict
bank_stats_response_from_dict = BankStatsResponse.from_dict(bank_stats_response_dict)

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