1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/python/docs/DbStatInfoModel.md
Snider 2852702a4b Add Python SDK for lthn API
Introduces a new Python client SDK for the lthn API, generated via OpenAPI Generator. Includes source code, models, API classes, documentation, tests, CI/CD workflows for GitHub and GitLab, and project configuration files.
2025-10-19 15:15:41 +01:00

994 B
Generated

DbStatInfoModel

Properties

Name Type Description Notes
tx_count int [optional]
write_tx_count int [optional]
map_size int [optional]

Example

from lthn.models.db_stat_info_model import DbStatInfoModel

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

# convert the object into a dict
db_stat_info_model_dict = db_stat_info_model_instance.to_dict()
# create an instance of DbStatInfoModel from a dict
db_stat_info_model_from_dict = DbStatInfoModel.from_dict(db_stat_info_model_dict)

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