# `Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/v2/core/account_update_params.ex#L58)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer{
  applied: boolean() | nil,
  automatic_indirect_tax:
    Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer.AutomaticIndirectTax.t()
    | nil,
  billing:
    Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer.Billing.t()
    | nil,
  capabilities:
    Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer.Capabilities.t()
    | nil,
  shipping:
    Stripe.Params.V2.Core.AccountUpdateParams.Configuration.Customer.Shipping.t()
    | nil,
  test_clock: String.t() | nil
}
```

* `applied` - Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
* `automatic_indirect_tax` - Automatic indirect tax settings to be used when automatic tax calculation is enabled on the customer's invoices, subscriptions, checkout sessions, or payment links. Surfaces if automatic tax calculation is possible given the current customer location information.
* `billing` - Billing settings - default settings used for this customer in Billing flows such as Invoices and Subscriptions.
* `capabilities` - Capabilities that have been requested on the Customer Configuration.
* `shipping` - The customer's shipping information. Appears on invoices emailed to this customer.
* `test_clock` - ID of the test clock to attach to the customer. Can only be set on testmode Accounts, and when the Customer Configuration is first set on an Account.

---

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