Class: Stripe::PaymentIntentCreateParams::PaymentsOrchestration
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentsOrchestration
- Defined in:
- lib/stripe/params/payment_intent_create_params.rb
Defined Under Namespace
Classes: PaymentDetails
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Whether this feature is enabled.
-
#payment_details ⇒ Object
Payment-level details for the orchestrated payment.
Instance Method Summary collapse
-
#initialize(enabled: nil, payment_details: nil) ⇒ PaymentsOrchestration
constructor
A new instance of PaymentsOrchestration.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(enabled: nil, payment_details: nil) ⇒ PaymentsOrchestration
Returns a new instance of PaymentsOrchestration.
6180 6181 6182 6183 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6180 def initialize(enabled: nil, payment_details: nil) @enabled = enabled @payment_details = payment_details end |
Instance Attribute Details
#enabled ⇒ Object
Whether this feature is enabled.
6176 6177 6178 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6176 def enabled @enabled end |
#payment_details ⇒ Object
Payment-level details for the orchestrated payment.
6178 6179 6180 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6178 def payment_details @payment_details end |