Class: Stripe::PromotionCodeUpdateParams::Restrictions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/promotion_code_update_params.rb

Defined Under Namespace

Classes: CurrencyOptions

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(currency_options: nil) ⇒ Restrictions

Returns a new instance of Restrictions.



18
19
20
# File 'lib/stripe/params/promotion_code_update_params.rb', line 18

def initialize(currency_options: nil)
  @currency_options = currency_options
end

Instance Attribute Details

#currency_optionsObject

Promotion codes defined in each available currency option. Each key must be a three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html) and a [supported currency](stripe.com/docs/currencies).



16
17
18
# File 'lib/stripe/params/promotion_code_update_params.rb', line 16

def currency_options
  @currency_options
end