# `Stripe.Params.QuoteCreateParams.LineItems`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/quote_create_params.ex#L146)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.QuoteCreateParams.LineItems{
  discounts: map() | nil,
  price: String.t() | nil,
  price_data: Stripe.Params.QuoteCreateParams.LineItems.PriceData.t() | nil,
  quantity: integer() | nil,
  tax_rates: map() | nil
}
```

* `discounts` - The discounts applied to this line item.
* `price` - The ID of the price object. One of `price` or `price_data` is required. Max length: 5000.
* `price_data` - Data used to generate a new [Price](https://docs.stripe.com/api/prices) object inline. One of `price` or `price_data` is required.
* `quantity` - The quantity of the line item.
* `tax_rates` - The tax rates which apply to the line item. When set, the `default_tax_rates` on the quote do not apply to this line item.

---

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