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

string
getId()

Returns the unique identifier for this resource.

from Resource
mixed
getResponse()

Returns the raw Stripe response.

from Resource
void
setProperties()

Set the response data as properties on the class.

from Resource
retrieve()

Retrieves the current account balance, based on the authentication that was used to make the request.

retrieveBalanceTransaction(string $id)

Retrieves the balance transaction with the given ID.

Details

in Resource at line 29
string getId()

Returns the unique identifier for this resource.

Return Value

string

in Resource at line 39
mixed getResponse()

Returns the raw Stripe response.

Return Value

mixed

in Resource at line 47
protected void setProperties()

Set the response data as properties on the class.

Return Value

void

at line 28
BalanceInterface retrieve()

Retrieves the current account balance, based on the authentication that was used to make the request.

Return Value

BalanceInterface

See also

at line 45
BalanceInterface retrieveBalanceTransaction(string $id)

Retrieves the balance transaction with the given ID.

Parameters

string $id

Return Value

BalanceInterface

See also