forked from lthn/blockchain
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.
994 B
Generated
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)