Attributes
A String representing the type of the object.
A “True” value means the request was made in Live Mode, while “False” indicates Test Mode.
An array of available balances for each currency.
A lowercase ISO currency code.
Total balance of the wallet.
The amount of money that is ready to be paid out.
The amount of money that is on hold.
 {
    "entity": "balance",
    "livemode": false,
    "wallets": [
        {
            "currency": "dzd",
            "balance": 50000,
            "ready_for_payout": "40000",
            "on_hold": 10000
        },
        {
            "currency": "usd",
            "balance": 2000,
            "ready_for_payout": "1800",
            "on_hold": 200
        },
        {
            "currency": "eur",
            "balance": 500,
            "ready_for_payout": "250",
            "on_hold": 250
        }
    ]
}