You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flat balance row for a single asset within an account and wallet type. One row per (assetId, balanceType).
total
int
Total number of balance rows by query.
[optional]
next
str
A cursor for the next page of results, if available.
[optional]
Example
fromfireblocks.models.connected_account_balances_responseimportConnectedAccountBalancesResponse# TODO update the JSON string belowjson="{}"# create an instance of ConnectedAccountBalancesResponse from a JSON stringconnected_account_balances_response_instance=ConnectedAccountBalancesResponse.from_json(json)
# print the JSON string representation of the objectprint(ConnectedAccountBalancesResponse.to_json())
# convert the object into a dictconnected_account_balances_response_dict=connected_account_balances_response_instance.to_dict()
# create an instance of ConnectedAccountBalancesResponse from a dictconnected_account_balances_response_from_dict=ConnectedAccountBalancesResponse.from_dict(connected_account_balances_response_dict)