Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

BalanceHistoryPagedResponse

Properties

Name Type Description Notes
data List[BalanceHistoryItemDto] Array of balance history data points
next str Cursor for next page [optional]
prev str Cursor for previous page [optional]
total float Total count of items [optional]

Example

from fireblocks.models.balance_history_paged_response import BalanceHistoryPagedResponse

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

# convert the object into a dict
balance_history_paged_response_dict = balance_history_paged_response_instance.to_dict()
# create an instance of BalanceHistoryPagedResponse from a dict
balance_history_paged_response_from_dict = BalanceHistoryPagedResponse.from_dict(balance_history_paged_response_dict)

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