Class: Stripe::PaymentIntentCreateParams::PaymentDetails::EventDetails::Delivery
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentDetails::EventDetails::Delivery
- Defined in:
- lib/stripe/params/payment_intent_create_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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(mode: nil, recipient: nil) ⇒ Delivery
Returns a new instance of Delivery.
930 931 932 933 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 930 def initialize(mode: nil, recipient: nil) @mode = mode @recipient = recipient end |
Instance Attribute Details
#mode ⇒ Object
The delivery method for the payment
926 927 928 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 926 def mode @mode end |
#recipient ⇒ Object
Details of the recipient.
928 929 930 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 928 def recipient @recipient end |