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
Instance Attribute Summary collapse
-
#digital ⇒ Object
The digital fulfillment option.
-
#shipping ⇒ Object
The shipping fulfillment option.
-
#type ⇒ Object
The type of fulfillment option.
Instance Method Summary collapse
-
#initialize(digital: nil, shipping: nil, type: nil) ⇒ SelectedFulfillmentOption
constructor
A new instance of SelectedFulfillmentOption.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(digital: nil, shipping: nil, type: nil) ⇒ SelectedFulfillmentOption
Returns a new instance of SelectedFulfillmentOption.
76 77 78 79 80 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 76 def initialize(digital: nil, shipping: nil, type: nil) @digital = digital @shipping = shipping @type = type end |
Instance Attribute Details
#digital ⇒ Object
The digital fulfillment option.
70 71 72 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 70 def digital @digital end |
#shipping ⇒ Object
The shipping fulfillment option.
72 73 74 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 72 def shipping @shipping end |
#type ⇒ Object
The type of fulfillment option.
74 75 76 |
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 74 def type @type end |