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

Parameters for financial account features update features.

# `t`

```elixir
@type t() :: %Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams{
  card_issuing:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.CardIssuing.t()
    | nil,
  deposit_insurance:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.DepositInsurance.t()
    | nil,
  expand: [String.t()] | nil,
  financial_addresses:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.FinancialAddresses.t()
    | nil,
  inbound_transfers:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.InboundTransfers.t()
    | nil,
  intra_stripe_flows:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.IntraStripeFlows.t()
    | nil,
  outbound_payments:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.OutboundPayments.t()
    | nil,
  outbound_transfers:
    Stripe.Params.Treasury.FinancialAccountFeaturesUpdateFeaturesParams.OutboundTransfers.t()
    | nil
}
```

* `card_issuing` - Encodes the FinancialAccount's ability to be used with the Issuing product, including attaching cards to and drawing funds from the FinancialAccount.
* `deposit_insurance` - Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.
* `expand` - Specifies which fields in the response should be expanded.
* `financial_addresses` - Contains Features that add FinancialAddresses to the FinancialAccount.
* `inbound_transfers` - Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.
* `intra_stripe_flows` - Represents the ability for the FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).
* `outbound_payments` - Includes Features related to initiating money movement out of the FinancialAccount to someone else's bucket of money.
* `outbound_transfers` - Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.

---

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