Class: Stripe::PaymentIntentUpdateParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::FerryReservationDetail::Passenger

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



3857
3858
3859
3860
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3857

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.



3853
3854
3855
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3853

def family_name
  @family_name
end

#given_nameObject

The given name of the person.



3855
3856
3857
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3855

def given_name
  @given_name
end