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.
373 374 375 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 373 def address @address end |
#email ⇒ Object (readonly)
The email address for the fulfillment details.
375 376 377 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 375 def email @email end |
#fulfillment_options ⇒ Object (readonly)
The fulfillment options.
377 378 379 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 377 def @fulfillment_options end |
#name ⇒ Object (readonly)
The name for the fulfillment details.
379 380 381 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 379 def name @name end |
#phone ⇒ Object (readonly)
The phone number for the fulfillment details.
381 382 383 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 381 def phone @phone end |
#selected_fulfillment_option ⇒ Object (readonly)
The selected fulfillment option.
383 384 385 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 383 def selected_fulfillment_option @selected_fulfillment_option end |
#selected_fulfillment_option_overrides ⇒ Object (readonly)
Per-item fulfillment option overrides.
385 386 387 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 385 def selected_fulfillment_option_overrides @selected_fulfillment_option_overrides end |
Class Method Details
.field_remappings ⇒ Object
396 397 398 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 396 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
387 388 389 390 391 392 393 394 |
# File 'lib/stripe/resources/delegated_checkout/requested_session.rb', line 387 def self.inner_class_types @inner_class_types = { address: Address, fulfillment_options: FulfillmentOption, selected_fulfillment_option: SelectedFulfillmentOption, selected_fulfillment_option_overrides: SelectedFulfillmentOptionOverride, } end |