I'm trying to retrieve all transactions for a balance.
The docs say to use this:
$balanceTransactions = $mollie->balanceTransactions->listFor("bal_gVMhHKqSSRYJyPsuoPNFH");
But that endpoint needs a Balance resource instead of a string.
Mollie\Api\Endpoints\BalanceTransactionEndpoint::listFor(): Argument #1 ($balance) must be of type Mollie\Api\Resources\Balance, string given,
So either the docs need to be updated, or the package should accept a string? (cc @tulip terrace )