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

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.PriceCreateParams.ProductData{
  active: boolean() | nil,
  id: String.t() | nil,
  metadata: %{required(String.t()) =&gt; String.t()} | nil,
  name: String.t() | nil,
  statement_descriptor: String.t() | nil,
  tax_code: String.t() | nil,
  unit_label: String.t() | nil
}
```

* `active` - Whether the product is currently available for purchase. Defaults to `true`.
* `id` - The identifier for the product. Must be unique. If not provided, an identifier will be randomly generated. Max length: 5000.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
* `name` - The product's name, meant to be displayable to the customer. Max length: 5000.
* `statement_descriptor` - An arbitrary string to be displayed on your customer's credit card or bank statement. While most banks display this information consistently, some may display it incorrectly or not at all.

This may be up to 22 characters. The statement description may not include `, `\`, `"`, `'` characters, and will appear on your customer's statement in capital letters. Non-ASCII characters are automatically stripped. Max length: 22.
* `tax_code` - A [tax code](https://docs.stripe.com/tax/tax-categories) ID. Max length: 5000.
* `unit_label` - A label that represents units of this product. When set, this will be included in customers' receipts, invoices, Checkout, and the customer portal. Max length: 12.

---

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