Class: Stripe::PaymentIntentConfirmParams::PaymentDetails::LodgingDatum::Guest
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentDetails::LodgingDatum::Guest
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Guest’s full name.
Instance Method Summary collapse
-
#initialize(name: nil) ⇒ Guest
constructor
A new instance of Guest.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(name: nil) ⇒ Guest
Returns a new instance of Guest.
1710 1711 1712 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1710 def initialize(name: nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
Guest’s full name.
1708 1709 1710 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1708 def name @name end |