# `Stripe.Params.SetupIntentCreateParams.PaymentMethodOptions.UsBankAccount.FinancialConnections`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/setup_intent_create_params.ex#L959)

Nested parameters.

# `t`

```elixir
@type t() ::
  %Stripe.Params.SetupIntentCreateParams.PaymentMethodOptions.UsBankAccount.FinancialConnections{
    filters:
      Stripe.Params.SetupIntentCreateParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.Filters.t()
      | nil,
    permissions: [String.t()] | nil,
    prefetch: [String.t()] | nil,
    return_url: String.t() | nil
  }
```

* `filters` - Provide filters for the linked accounts that the customer can select for the payment method.
* `permissions` - The list of permissions to request. If this parameter is passed, the `payment_method` permission must be included. Valid permissions include: `balances`, `ownership`, `payment_method`, and `transactions`.
* `prefetch` - List of data features that you would like to retrieve upon account creation.
* `return_url` - For webview integrations only. Upon completing OAuth login in the native browser, the user will be redirected to this URL to return to your app. Max length: 5000.

---

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