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
Indicates whether the total amount represents the complete balance of all assets in the account. When true, all asset balances have been successfully converted to the denominated currency. When false, some assets could not be included in the total due to missing exchange rates or non-convertible assets.
[default to False]
Example
fromfireblocks.models.connected_account_total_balanceimportConnectedAccountTotalBalance# TODO update the JSON string belowjson="{}"# create an instance of ConnectedAccountTotalBalance from a JSON stringconnected_account_total_balance_instance=ConnectedAccountTotalBalance.from_json(json)
# print the JSON string representation of the objectprint(ConnectedAccountTotalBalance.to_json())
# convert the object into a dictconnected_account_total_balance_dict=connected_account_total_balance_instance.to_dict()
# create an instance of ConnectedAccountTotalBalance from a dictconnected_account_total_balance_from_dict=ConnectedAccountTotalBalance.from_dict(connected_account_total_balance_dict)