# `Stripe.Resources.V2.Core.Account.Configuration.Customer.AutomaticIndirectTax`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/v2/core/account.ex#L111)

Nested struct within the parent resource.

# `t`

```elixir
@type t() ::
  %Stripe.Resources.V2.Core.Account.Configuration.Customer.AutomaticIndirectTax{
    exempt: String.t() | nil,
    ip_address: String.t() | nil,
    location:
      Stripe.Resources.V2.Core.Account.Configuration.Customer.AutomaticIndirectTax.Location.t()
      | nil,
    location_source: String.t() | nil
  }
```

* `exempt` - The customer account's tax exemption status: `none`, `exempt`, or `reverse`. When `reverse`, invoice and receipt PDFs include "Reverse charge". Possible values: `exempt`, `none`, `reverse`.
* `ip_address` - A recent IP address of the customer used for tax reporting and tax location inference.
* `location` - The customer account's identified tax location, derived from `location_source`. Only rendered if the `automatic_indirect_tax` feature is requested and `active`.
* `location_source` - Data source used to identify the customer account's tax location. Defaults to `identity_address`. Used for automatic indirect tax calculation. Possible values: `identity_address`, `ip_address`, `payment_method`, `shipping_address`.

---

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