Class: Stripe::PaymentIntentCreateParams::PaymentsOrchestration

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



6357
6358
6359
6360
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6357

def initialize(enabled: nil, payment_reference: nil)
  @enabled = enabled
  @payment_reference = payment_reference
end

Instance Attribute Details

#enabledObject

Whether this feature is enabled.



6353
6354
6355
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6353

def enabled
  @enabled
end

#payment_referenceObject

Merchant-provided reference for this payment, used for reconciliation.



6355
6356
6357
# File 'lib/stripe/params/payment_intent_create_params.rb', line 6355

def payment_reference
  @payment_reference
end