# `Stripe.Resources.Tax.Settings.Defaults`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/tax/settings.ex#L35)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Tax.Settings.Defaults{
  provider: String.t() | nil,
  tax_behavior: String.t() | nil,
  tax_code: String.t() | nil
}
```

* `provider` - The tax calculation provider this account uses. Defaults to `stripe` when not using a [third-party provider](https://stripe.com/tax/third-party-apps). Possible values: `anrok`, `avalara`, `sphere`, `stripe`.
* `tax_behavior` - Default [tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#tax-behavior) used to specify whether the price is considered inclusive of taxes or exclusive of taxes. If the item's price has a tax behavior set, it will take precedence over the default tax behavior. Possible values: `exclusive`, `inclusive`, `inferred_by_currency`. Nullable.
* `tax_code` - Default [tax code](https://stripe.com/docs/tax/tax-categories) used to classify your products and prices. Max length: 5000. Nullable.

---

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