# `Stripe.Params.CustomerFundingInstructionsCreateFundingInstructionsParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/customer_funding_instructions_create_funding_instructions_params.ex#L2)

Parameters for customer funding instructions create funding instructions.

# `t`

```elixir
@type t() ::
  %Stripe.Params.CustomerFundingInstructionsCreateFundingInstructionsParams{
    bank_transfer:
      Stripe.Params.CustomerFundingInstructionsCreateFundingInstructionsParams.BankTransfer.t(),
    currency: String.t(),
    expand: [String.t()] | nil,
    funding_type: String.t()
  }
```

* `bank_transfer` - Additional parameters for `bank_transfer` funding types
* `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). Format: ISO 4217 currency code.
* `expand` - Specifies which fields in the response should be expanded.
* `funding_type` - The `funding_type` to get the instructions for. Possible values: `bank_transfer`.

---

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