Class: CheckoutSdk::Workflows::WorkflowCondition

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

Instance Attribute Summary collapse

Instance Attribute Details

#typeString



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/checkout_sdk/workflows/workflow_condition.rb', line 7

class WorkflowCondition
  attr_reader :type

  protected

  # @abstract
  # @param [String] {WorkflowConditionType}
  def initialize(type)
    @type = type
  end
end