| Name |
Type |
Description |
Notes |
| data |
List[TotalSupplyItemDto] |
Array of total supply data points |
|
| next |
str |
Cursor for next page |
[optional] |
| prev |
str |
Cursor for previous page |
[optional] |
| total |
float |
Total count of items |
[optional] |
from fireblocks.models.total_supply_paged_response import TotalSupplyPagedResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TotalSupplyPagedResponse from a JSON string
total_supply_paged_response_instance = TotalSupplyPagedResponse.from_json(json)
# print the JSON string representation of the object
print(TotalSupplyPagedResponse.to_json())
# convert the object into a dict
total_supply_paged_response_dict = total_supply_paged_response_instance.to_dict()
# create an instance of TotalSupplyPagedResponse from a dict
total_supply_paged_response_from_dict = TotalSupplyPagedResponse.from_dict(total_supply_paged_response_dict)
[Back to Model list] [Back to API list] [Back to README]