Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 991 Bytes

File metadata and controls

31 lines (22 loc) · 991 Bytes

AddressBalance

The token balance for a specific wallet address.

Properties

Name Type Description Notes
address str The wallet address.
balance Balance

Example

from cobo_waas2.models.address_balance import AddressBalance

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

# convert the object into a dict
address_balance_dict = address_balance_instance.to_dict()
# create an instance of AddressBalance from a dict
address_balance_from_dict = AddressBalance.from_dict(address_balance_dict)

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