Class: Stripe::PaymentIntentCreateParams::PaymentsOrchestration
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentsOrchestration
- Defined in:
- lib/stripe/params/payment_intent_create_params.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Whether this feature is enabled.
-
#payment_reference ⇒ Object
Merchant-provided reference for this payment, used for reconciliation.
Instance Method Summary collapse
-
#initialize(enabled: nil, payment_reference: 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_reference: nil) ⇒ PaymentsOrchestration
Returns a new instance of PaymentsOrchestration.
6181 6182 6183 6184 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6181 def initialize(enabled: nil, payment_reference: nil) @enabled = enabled @payment_reference = payment_reference end |
Instance Attribute Details
#enabled ⇒ Object
Whether this feature is enabled.
6177 6178 6179 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6177 def enabled @enabled end |
#payment_reference ⇒ Object
Merchant-provided reference for this payment, used for reconciliation.
6179 6180 6181 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6179 def payment_reference @payment_reference end |