Class: Stripe::DelegatedCheckout::RequestedSession::FulfillmentDetails
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::DelegatedCheckout::RequestedSession::FulfillmentDetails
- Defined in:
- lib/stripe/resources/delegated_checkout/requested_session.rb
Defined Under Namespace
Classes: Address, FulfillmentOption, SelectedFulfillmentOption, SelectedFulfillmentOptionOverride
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
The fulfillment address.
-
#email ⇒ Object
readonly
The email address for the fulfillment details.
-
#fulfillment_options ⇒ Object
readonly
The fulfillment options.
-
#name ⇒ Object
readonly
The name for the fulfillment details.
-
#phone ⇒ Object
readonly
The phone number for the fulfillment details.
-
#selected_fulfillment_option ⇒ Object
readonly
The selected fulfillment option.
-
#selected_fulfillment_option_overrides ⇒ Object
readonly
Per-item fulfillment option overrides.
Attributes inherited from StripeObject
Class Method Summary collapse
Methods inherited from StripeObject
#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, field_encodings, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Attribute Details
#address ⇒ Object (readonly)
The fulfillment address.
261 262 263 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 261 def address @address end |
#email ⇒ Object (readonly)
The email address for the fulfillment details.
263 264 265 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 263 def email @email end |
#fulfillment_options ⇒ Object (readonly)
The fulfillment options.
265 266 267 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 265 def @fulfillment_options end |
#name ⇒ Object (readonly)
The name for the fulfillment details.
267 268 269 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 267 def name @name end |
#phone ⇒ Object (readonly)
The phone number for the fulfillment details.
269 270 271 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 269 def phone @phone end |
#selected_fulfillment_option ⇒ Object (readonly)
The selected fulfillment option.
271 272 273 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 271 def selected_fulfillment_option @selected_fulfillment_option end |
#selected_fulfillment_option_overrides ⇒ Object (readonly)
Per-item fulfillment option overrides.
273 274 275 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 273 def selected_fulfillment_option_overrides @selected_fulfillment_option_overrides end |
Class Method Details
.field_remappings ⇒ Object
284 285 286 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 284 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
275 276 277 278 279 280 281 282 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 275 def self.inner_class_types @inner_class_types = { address: Address, fulfillment_options: FulfillmentOption, selected_fulfillment_option: SelectedFulfillmentOption, selected_fulfillment_option_overrides: SelectedFulfillmentOptionOverride, } end |