# `Stripe.Resources.Tax.Association`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/tax/association.ex#L2)

TaxProductResourceTaxAssociation

A Tax Association exposes the Tax Transactions that Stripe attempted to create on your behalf based on the PaymentIntent input

# `t`

```elixir
@type t() :: %Stripe.Resources.Tax.Association{
  calculation: String.t(),
  id: String.t(),
  object: String.t(),
  payment_intent: String.t(),
  tax_transaction_attempts: [
    Stripe.Resources.Tax.Association.TaxTransactionAttempts.t()
  ]
}
```

* `calculation` - The [Tax Calculation](https://docs.stripe.com/api/tax/calculations/object) that was included in PaymentIntent. Max length: 5000.
* `id` - Unique identifier for the object. Max length: 5000.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `tax.association`.
* `payment_intent` - The [PaymentIntent](https://docs.stripe.com/api/payment_intents/object) that this Tax Association is tracking. Max length: 5000.
* `tax_transaction_attempts` - Information about the tax transactions linked to this payment intent Nullable. Expandable.

# `expandable_fields`

# `object_name`

---

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