Class: CheckoutSdk::Workflows::ProcessingChannelWorkflowCondition

Inherits:
WorkflowCondition
  • Object
show all
Defined in:
lib/checkout_sdk/workflows/processing_channel_workflow_condition.rb

Instance Attribute Summary collapse

Attributes inherited from WorkflowCondition

#type

Instance Method Summary collapse

Constructor Details

#initializeProcessingChannelWorkflowCondition

Returns a new instance of ProcessingChannelWorkflowCondition.



10
11
12
# File 'lib/checkout_sdk/workflows/processing_channel_workflow_condition.rb', line 10

def initialize
  super CheckoutSdk::Workflows::WorkflowConditionType::PROCESSING_CHANNEL
end

Instance Attribute Details

#processing_channelsArray(String)

Returns:

  • (Array(String))


7
8
9
10
11
12
13
# File 'lib/checkout_sdk/workflows/processing_channel_workflow_condition.rb', line 7

class ProcessingChannelWorkflowCondition < WorkflowCondition
  attr_accessor :processing_channels

  def initialize
    super CheckoutSdk::Workflows::WorkflowConditionType::PROCESSING_CHANNEL
  end
end