Class: Stripe::ShippingRateCreateParams::DeliveryEstimate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ShippingRateCreateParams::DeliveryEstimate
- Defined in:
- lib/stripe/params/shipping_rate_create_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#maximum ⇒ Object
The upper bound of the estimated range.
-
#minimum ⇒ Object
The lower bound of the estimated range.
Instance Method Summary collapse
-
#initialize(maximum: nil, minimum: nil) ⇒ DeliveryEstimate
constructor
A new instance of DeliveryEstimate.
Methods inherited from RequestParams
Constructor Details
#initialize(maximum: nil, minimum: nil) ⇒ DeliveryEstimate
Returns a new instance of DeliveryEstimate.
35 36 37 38 |
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 35 def initialize(maximum: nil, minimum: nil) @maximum = maximum @minimum = minimum end |
Instance Attribute Details
#maximum ⇒ Object
The upper bound of the estimated range. If empty, represents no upper bound i.e., infinite.
31 32 33 |
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 31 def maximum @maximum end |
#minimum ⇒ Object
The lower bound of the estimated range. If empty, represents no lower bound.
33 34 35 |
# File 'lib/stripe/params/shipping_rate_create_params.rb', line 33 def minimum @minimum end |