Class: Stripe::DelegatedCheckout::RequestedSessionUpdateParams::FulfillmentDetails::SelectedFulfillmentOption
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::DelegatedCheckout::RequestedSessionUpdateParams::FulfillmentDetails::SelectedFulfillmentOption
- Defined in:
- lib/stripe/params/delegated_checkout/requested_session_update_params.rb
Defined Under Namespace
Classes: Shipping
Instance Attribute Summary collapse
-
#shipping ⇒ Object
The shipping fulfillment option.
-
#type ⇒ Object
The type of fulfillment option.
Instance Method Summary collapse
-
#initialize(shipping: nil, type: nil) ⇒ SelectedFulfillmentOption
constructor
A new instance of SelectedFulfillmentOption.
Methods inherited from RequestParams
Constructor Details
#initialize(shipping: nil, type: nil) ⇒ SelectedFulfillmentOption
Returns a new instance of SelectedFulfillmentOption.
53 54 55 56 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 53 def initialize(shipping: nil, type: nil) @shipping = shipping @type = type end |
Instance Attribute Details
#shipping ⇒ Object
The shipping fulfillment option.
49 50 51 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 49 def shipping @shipping end |
#type ⇒ Object
The type of fulfillment option.
51 52 53 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 51 def type @type end |