Class: Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::RoundTripReservationDetail::Passenger
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::RoundTripReservationDetail::Passenger
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Instance Attribute Summary collapse
-
#family_name ⇒ Object
The family name of the person.
-
#given_name ⇒ Object
The given name of the person.
Instance Method Summary collapse
-
#initialize(family_name: nil, given_name: nil) ⇒ Passenger
constructor
A new instance of Passenger.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(family_name: nil, given_name: nil) ⇒ Passenger
Returns a new instance of Passenger.
4692 4693 4694 4695 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 4692 def initialize(family_name: nil, given_name: nil) @family_name = family_name @given_name = given_name end |
Instance Attribute Details
#family_name ⇒ Object
The family name of the person.
4688 4689 4690 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 4688 def family_name @family_name end |
#given_name ⇒ Object
The given name of the person.
4690 4691 4692 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 4690 def given_name @given_name end |