Class: Stripe::V2::Payments::OffSessionPaymentCreateParams::PaymentsOrchestration

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/payments/off_session_payment_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(enabled: nil) ⇒ PaymentsOrchestration

Returns a new instance of PaymentsOrchestration.



135
136
137
# File 'lib/stripe/params/v2/payments/off_session_payment_create_params.rb', line 135

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

Instance Attribute Details

#enabledObject

True when you want to enable payments orchestration for this off-session payment. False otherwise.



133
134
135
# File 'lib/stripe/params/v2/payments/off_session_payment_create_params.rb', line 133

def enabled
  @enabled
end