Balance class final

Balance

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](https://stripe.com/docs/reporting/balance-transaction-types) that contributed to the balance (charges, payouts, and so forth). The available and pending amounts for each currency are broken down further by payment source types. Related guide: [Understanding Connect account balances](https://stripe.com/docs/connect/account-balances)

Implemented types

Constructors

Balance({required List<BalanceAmount> available, List<BalanceAmount>? connectReserved, List<BalanceAmountNet>? instantAvailable, BalanceDetail? issuing, required bool livemode, required List<BalanceAmount> pending})
Balance
const
Balance.fromJson(Object? json)
factory

Properties

available List<BalanceAmount>
final
connectReserved List<BalanceAmount>?
final
hashCode int
The hash code for this object.
no setterinherited
instantAvailable List<BalanceAmountNet>?
final
issuing BalanceDetail?
final
livemode bool
final
object String
The resource's type.
final
pending List<BalanceAmount>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

encodeWith<V>(Encoder<V> encoder) → V
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

encode<V>(Balance instance, Encoder<V> encoder) → V