Class: CheckoutSdk::Workflows::WorkflowAction

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

Direct Known Subclasses

WebhookWorkflowAction

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_action.rb', line 7

class WorkflowAction
  attr_reader :type

  protected

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