# `PolarExpress.Schemas.CheckoutDiscountFixedRepeatDuration`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/checkout_discount_fixed_repeat_duration.ex#L2)

CheckoutDiscountFixedRepeatDuration

Schema for a fixed amount discount that is applied on every invoice
for a certain number of months.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CheckoutDiscountFixedRepeatDuration{
  amount: integer() | nil,
  code: String.t() | nil,
  currency: String.t() | nil,
  duration: PolarExpress.Schemas.DiscountDuration.t() | nil,
  duration_in_months: integer() | nil,
  id: String.t() | nil,
  name: String.t() | nil,
  type: PolarExpress.Schemas.DiscountType.t() | nil
}
```

* `amount`
* `code` - Nullable.
* `currency`
* `duration`
* `duration_in_months`
* `id` - The ID of the object. Format: uuid4.
* `name`
* `type`

# `schema_name`

---

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