| Name |
Type |
Description |
Notes |
| available |
float |
The currently available amount in the account, in the account's currency. |
[optional] |
| blocked |
float |
The currently blocked amount in the account, in the account's currency. |
[optional] |
from clientapi_barion.models.balance import Balance
# TODO update the JSON string below
json = "{}"
# create an instance of Balance from a JSON string
balance_instance = Balance.from_json(json)
# print the JSON string representation of the object
print(Balance.to_json())
# convert the object into a dict
balance_dict = balance_instance.to_dict()
# create an instance of Balance from a dict
balance_from_dict = Balance.from_dict(balance_dict)
[Back to Model list] [Back to API list] [Back to README]