| Name |
Type |
Description |
Notes |
| current_block |
str |
The current block, same as getFilterChangesblockNumber encoded as decimal |
|
| highest_block |
str |
The estimated highest block encoded as decimal |
|
| starting_block |
str |
The block at which the import started encoded as decimal |
|
from qan.qan.sync_status import SyncStatus
# TODO update the JSON string below
json = "{}"
# create an instance of SyncStatus from a JSON string
sync_status_instance = SyncStatus.from_json(json)
# print the JSON string representation of the object
print(SyncStatus.to_json())
# convert the object into a dict
sync_status_dict = sync_status_instance.to_dict()
# create an instance of SyncStatus from a dict
sync_status_from_dict = SyncStatus.from_dict(sync_status_dict)
[Back to Model list] [Back to API list] [Back to README]