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
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Defines the total balance of the address that is confirmed. It doesn't include unconfirmed transactions.
unit
str
Represents the unit of the confirmed balance.
Example
fromcryptoapis.models.get_address_balance_ri_confirmed_balanceimportGetAddressBalanceRIConfirmedBalance# TODO update the JSON string belowjson="{}"# create an instance of GetAddressBalanceRIConfirmedBalance from a JSON stringget_address_balance_ri_confirmed_balance_instance=GetAddressBalanceRIConfirmedBalance.from_json(json)
# print the JSON string representation of the objectprintGetAddressBalanceRIConfirmedBalance.to_json()
# convert the object into a dictget_address_balance_ri_confirmed_balance_dict=get_address_balance_ri_confirmed_balance_instance.to_dict()
# create an instance of GetAddressBalanceRIConfirmedBalance from a dictget_address_balance_ri_confirmed_balance_form_dict=get_address_balance_ri_confirmed_balance.from_dict(get_address_balance_ri_confirmed_balance_dict)