Class: Stripe::PaymentLinkCreateParams::ShippingOption

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(shipping_rate: nil) ⇒ ShippingOption

Returns a new instance of ShippingOption.



622
623
624
# File 'lib/stripe/params/payment_link_create_params.rb', line 622

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

Instance Attribute Details

#shipping_rateObject

The ID of the Shipping Rate to use for this shipping option.



620
621
622
# File 'lib/stripe/params/payment_link_create_params.rb', line 620

def shipping_rate
  @shipping_rate
end