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

Parameters for financial account update.

# `t`

```elixir
@type t() :: %Stripe.Params.Treasury.FinancialAccountUpdateParams{
  expand: [String.t()] | nil,
  features:
    Stripe.Params.Treasury.FinancialAccountUpdateParams.Features.t() | nil,
  forwarding_settings:
    Stripe.Params.Treasury.FinancialAccountUpdateParams.ForwardingSettings.t()
    | nil,
  metadata: %{required(String.t()) =&gt; String.t()} | nil,
  nickname: map() | nil,
  platform_restrictions:
    Stripe.Params.Treasury.FinancialAccountUpdateParams.PlatformRestrictions.t()
    | nil
}
```

* `expand` - Specifies which fields in the response should be expanded.
* `features` - Encodes whether a FinancialAccount has access to a particular feature, with a status enum and associated `status_details`. Stripe or the platform may control features via the requested field.
* `forwarding_settings` - A different bank account where funds can be deposited/debited in order to get the closing FA's balance to $0
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
* `nickname` - The nickname for the FinancialAccount.
* `platform_restrictions` - The set of functionalities that the platform can restrict on the FinancialAccount.

---

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