Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

File metadata and controls

30 lines (21 loc) · 994 Bytes

Balance

Properties

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]

Example

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]