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

#to_h

Constructor Details

#initialize(shipping_rate: nil) ⇒ ShippingOption

Returns a new instance of ShippingOption.



588
589
590
# File 'lib/stripe/params/payment_link_create_params.rb', line 588

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.



586
587
588
# File 'lib/stripe/params/payment_link_create_params.rb', line 586

def shipping_rate
  @shipping_rate
end