Class: Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::FerryReservationDetail::Arrival
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::FerryReservationDetail::Arrival
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
Address of the arrival location.
-
#arrival_location ⇒ Object
Identifier name or reference for the arrival location.
Instance Method Summary collapse
-
#initialize(address: nil, arrival_location: nil) ⇒ Arrival
constructor
A new instance of Arrival.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil, arrival_location: nil) ⇒ Arrival
Returns a new instance of Arrival.
3735 3736 3737 3738 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3735 def initialize(address: nil, arrival_location: nil) @address = address @arrival_location = arrival_location end |
Instance Attribute Details
#address ⇒ Object
Address of the arrival location.
3731 3732 3733 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3731 def address @address end |
#arrival_location ⇒ Object
Identifier name or reference for the arrival location.
3733 3734 3735 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3733 def arrival_location @arrival_location end |