# `Stripe.Resources.FundingInstructions`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/funding_instructions.ex#L2)

CustomerBalanceFundingInstructionsCustomerBalanceFundingInstructions

Each customer has a [`balance`](https://docs.stripe.com/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://docs.stripe.com/payments/customer-balance/funding-instructions)

# `t`

```elixir
@type t() :: %Stripe.Resources.FundingInstructions{
  bank_transfer: Stripe.Resources.BankTransfer.t(),
  currency: String.t(),
  funding_type: String.t(),
  livemode: boolean(),
  object: String.t()
}
```

* `bank_transfer` - Expandable.
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Max length: 5000.
* `funding_type` - The `funding_type` of the returned instructions Possible values: `bank_transfer`.
* `livemode` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `funding_instructions`.

# `expandable_fields`

# `object_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
