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.
1570 1571 1572 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1570 def initialize(name: nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
Guest’s full name.
1568 1569 1570 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1568 def name @name end |