Class: Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::BusReservationDetail::Passenger

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_confirm_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(family_name: nil, given_name: nil) ⇒ Passenger

Returns a new instance of Passenger.



3589
3590
3591
3592
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3589

def initialize(family_name: nil, given_name: nil)
  @family_name = family_name
  @given_name = given_name
end

Instance Attribute Details

#family_nameObject

The family name of the person.



3585
3586
3587
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3585

def family_name
  @family_name
end

#given_nameObject

The given name of the person.



3587
3588
3589
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3587

def given_name
  @given_name
end