# `Stripe.Params.PlanCreateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/plan_create_params.ex#L2)

Parameters for plan create.

# `t`

```elixir
@type t() :: %Stripe.Params.PlanCreateParams{
  active: boolean() | nil,
  amount: integer() | nil,
  amount_decimal: String.t() | nil,
  billing_scheme: String.t() | nil,
  currency: String.t(),
  expand: [String.t()] | nil,
  id: String.t() | nil,
  interval: String.t(),
  interval_count: integer() | nil,
  metadata: map() | nil,
  meter: String.t() | nil,
  nickname: String.t() | nil,
  product: map() | nil,
  tiers: [Stripe.Params.PlanCreateParams.Tiers.t()] | nil,
  tiers_mode: String.t() | nil,
  transform_usage: Stripe.Params.PlanCreateParams.TransformUsage.t() | nil,
  trial_period_days: integer() | nil,
  usage_type: String.t() | nil
}
```

* `active` - Whether the plan is currently available for new subscriptions. Defaults to `true`.
* `amount` - A positive integer in cents (or local equivalent) (or 0 for a free plan) representing how much to charge on a recurring basis.
* `amount_decimal` - Same as `amount`, but accepts a decimal value with at most 12 decimal places. Only one of `amount` and `amount_decimal` can be set. Format: decimal string.
* `billing_scheme` - Describes how to compute the price per period. Either `per_unit` or `tiered`. `per_unit` indicates that the fixed amount (specified in `amount`) will be charged per unit in `quantity` (for plans with `usage_type=licensed`), or per unit of total usage (for plans with `usage_type=metered`). `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes. Possible values: `per_unit`, `tiered`.
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `expand` - Specifies which fields in the response should be expanded.
* `id` - An identifier randomly generated by Stripe. Used to identify this plan when subscribing a customer. You can optionally override this ID, but the ID must be unique across all plans in your Stripe account. You can, however, use the same plan ID in both live and test modes. Max length: 5000.
* `interval` - Specifies billing frequency. Either `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `interval_count` - The number of intervals between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months. Maximum of three years interval allowed (3 years, 36 months, or 156 weeks).
* `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`.
* `meter` - The meter tracking the usage of a metered price Max length: 5000.
* `nickname` - A brief description of the plan, hidden from customers. Max length: 5000.
* `product`
* `tiers` - Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.
* `tiers_mode` - Defines if the tiering price should be `graduated` or `volume` based. In `volume`-based tiering, the maximum quantity within a period determines the per unit price, in `graduated` tiering pricing can successively change as the quantity grows. Possible values: `graduated`, `volume`.
* `transform_usage` - Apply a transformation to the reported usage or set quantity before computing the billed price. Cannot be combined with `tiers`.
* `trial_period_days` - Default number of trial days when subscribing a customer to this plan using [`trial_from_plan=true`](https://docs.stripe.com/api#create_subscription-trial_from_plan).
* `usage_type` - Configures how the quantity per period should be determined. Can be either `metered` or `licensed`. `licensed` automatically bills the `quantity` set when adding it to a subscription. `metered` aggregates the total usage based on usage records. Defaults to `licensed`. Possible values: `licensed`, `metered`.

---

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