FundingInstructions class final

CustomerBalanceFundingInstructionsCustomerBalanceFundingInstructions

Each customer has a [`balance`](https://stripe.com/docs/api/customers/object#customer\_object-balance) that is automatically applied to future invoices and payments using the `customer_balance` payment method. Customers can fund this balance by initiating a bank transfer to any account in the `financial_addresses` field. Related guide: [Customer balance funding instructions](https://stripe.com/docs/payments/customer-balance/funding-instructions)

Implemented types

Constructors

FundingInstructions({required FundingInstructionsBankTransfer bankTransfer, required String currency, required bool livemode})
CustomerBalanceFundingInstructionsCustomerBalanceFundingInstructions
const
FundingInstructions.fromJson(Object? json)
factory

Properties

bankTransfer FundingInstructionsBankTransfer
final
currency String
final
fundingType String
final
hashCode int
The hash code for this object.
no setterinherited
livemode bool
final
object String
The resource's type.
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>(FundingInstructions instance, Encoder<V> encoder) → V