Class: Stripe::ShippingRateCreateParams::FixedAmount

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

Defined Under Namespace

Classes: CurrencyOptions

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount: nil, currency: nil, currency_options: nil) ⇒ FixedAmount

Returns a new instance of FixedAmount.



60
61
62
63
64
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 60

def initialize(amount: nil, currency: nil, currency_options: nil)
  @amount = amount
  @currency = currency
  @currency_options = currency_options
end

Instance Attribute Details

#amountObject

A non-negative integer in cents representing how much to charge.



54
55
56
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 54

def amount
  @amount
end

#currencyObject

Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](stripe.com/docs/currencies).



56
57
58
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 56

def currency
  @currency
end

#currency_optionsObject

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).



58
59
60
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 58

def currency_options
  @currency_options
end