Class: Stripe::PaymentIntentCaptureParams::PaymentDetails::Lodging::Delivery
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCaptureParams::PaymentDetails::Lodging::Delivery
- Defined in:
- lib/stripe/params/payment_intent_capture_params.rb
Defined Under Namespace
Classes: Recipient
Instance Attribute Summary collapse
-
#mode ⇒ Object
The delivery method for the payment.
-
#recipient ⇒ Object
Details of the recipient.
Instance Method Summary collapse
-
#initialize(mode: nil, recipient: nil) ⇒ Delivery
constructor
A new instance of Delivery.
Methods inherited from RequestParams
Constructor Details
#initialize(mode: nil, recipient: nil) ⇒ Delivery
Returns a new instance of Delivery.
1359 1360 1361 1362 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 1359 def initialize(mode: nil, recipient: nil) @mode = mode @recipient = recipient end |
Instance Attribute Details
#mode ⇒ Object
The delivery method for the payment
1355 1356 1357 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 1355 def mode @mode end |
#recipient ⇒ Object
Details of the recipient.
1357 1358 1359 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 1357 def recipient @recipient end |