Balance
class Balance extends Resource implements BalanceInterface
This is an object representing your Stripe balance. You can retrieve it to see the balance currently on your Stripe account.
You can also retrieve the balance history, which contains a list of transactions that contributed to the balance (charges, payouts, and so forth).
Properties
string | $id | A unique identifier for the resource. | from Resource |
protected mixed | $response | A response from Stripe. | from Resource |
Methods
Retrieves the current account balance, based on the authentication that was used to make the request.
Retrieves the balance transaction with the given ID.
Details
in Resource at line 29
string
getId()
Returns the unique identifier for this resource.
in Resource at line 39
mixed
getResponse()
Returns the raw Stripe response.
in Resource at line 47
protected void
setProperties()
Set the response data as properties on the class.
at line 28
BalanceInterface
retrieve()
Retrieves the current account balance, based on the authentication that was used to make the request.
at line 45
BalanceInterface
retrieveBalanceTransaction(string $id)
Retrieves the balance transaction with the given ID.