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

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.PaymentLinkCreateParams.LineItems{
  adjustable_quantity:
    Stripe.Params.PaymentLinkCreateParams.LineItems.AdjustableQuantity.t() | nil,
  price: String.t() | nil,
  price_data:
    Stripe.Params.PaymentLinkCreateParams.LineItems.PriceData.t() | nil,
  quantity: integer() | nil
}
```

* `adjustable_quantity` - When set, provides configuration for this item’s quantity to be adjusted by the customer during checkout.
* `price` - The ID of the [Price](https://docs.stripe.com/api/prices) or [Plan](https://docs.stripe.com/api/plans) 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 being purchased.

---

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