mirror of
https://github.com/logos-storage/logos-storage-py-api-client.git
synced 2026-01-02 21:43:12 +00:00
1.2 KiB
1.2 KiB
DebugInfo
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Peer Identity reference as specified at https://docs.libp2p.io/concepts/fundamentals/peers/ | |
| addrs | List[str] | ||
| repo | str | Path of the data repository where all nodes data are stored | |
| spr | str | Signed Peer Record (libp2p) | |
| announce_addresses | List[str] | ||
| table | PeersTable | ||
| codex | CodexVersion |
Example
from codex_api_client.models.debug_info import DebugInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DebugInfo from a JSON string
debug_info_instance = DebugInfo.from_json(json)
# print the JSON string representation of the object
print(DebugInfo.to_json())
# convert the object into a dict
debug_info_dict = debug_info_instance.to_dict()
# create an instance of DebugInfo from a dict
debug_info_from_dict = DebugInfo.from_dict(debug_info_dict)