# `Stripe.Resources.SubscriptionSchedule.Phases.Discounts`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/subscription_schedule.ex#L506)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.SubscriptionSchedule.Phases.Discounts{
  coupon: String.t() | Stripe.Resources.Coupon.t() | nil,
  discount: String.t() | Stripe.Resources.Discount.t() | nil,
  promotion_code: String.t() | Stripe.Resources.PromotionCode.t() | nil
}
```

* `coupon` - ID of the coupon to create a new discount for. Nullable.
* `discount` - ID of an existing discount on the object (or one of its ancestors) to reuse. Nullable.
* `promotion_code` - ID of the promotion code to create a new discount for. Nullable.

---

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