mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
12 lines
543 B
Ruby
12 lines
543 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
# A discount represents the actual application of a [coupon](https://stripe.com/docs/api#coupons) or [promotion code](https://stripe.com/docs/api#promotion_codes).
|
|
# It contains information about when the discount began, when it will end, and what it is applied to.
|
|
#
|
|
# Related guide: [Applying Discounts to Subscriptions](https://stripe.com/docs/billing/subscriptions/discounts).
|
|
class Discount < StripeObject
|
|
OBJECT_NAME = 'discount'
|
|
end
|
|
end |