Class: Stripe::ShippingRateUpdateParams::FixedAmount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ShippingRateUpdateParams::FixedAmount
- Defined in:
- lib/stripe/params/shipping_rate_update_params.rb
Defined Under Namespace
Classes: CurrencyOptions
Instance Attribute Summary collapse
-
#currency_options ⇒ Object
Shipping rates defined in each available currency option.
Instance Method Summary collapse
-
#initialize(currency_options: nil) ⇒ FixedAmount
constructor
A new instance of FixedAmount.
Methods inherited from RequestParams
Constructor Details
#initialize(currency_options: nil) ⇒ FixedAmount
Returns a new instance of FixedAmount.
21 22 23 |
# File 'lib/stripe/params/shipping_rate_update_params.rb', line 21 def initialize(currency_options: nil) @currency_options = end |
Instance Attribute Details
#currency_options ⇒ Object
Shipping rates 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).
19 20 21 |
# File 'lib/stripe/params/shipping_rate_update_params.rb', line 19 def @currency_options end |