Class: WorkflowRb::WorkflowStep

Inherits:
Object
  • Object
show all
Defined in:
lib/workflow_rb/models/workflow_step.rb

Direct Known Subclasses

SubscriptionStep

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeWorkflowStep

Returns a new instance of WorkflowStep.



12
13
14
15
16
# File 'lib/workflow_rb/models/workflow_step.rb', line 12

def initialize
  @outcomes = []
  @inputs = []
  @outputs = []
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



7
8
9
# File 'lib/workflow_rb/models/workflow_step.rb', line 7

def body
  @body
end

#idObject

Returns the value of attribute id.



4
5
6
# File 'lib/workflow_rb/models/workflow_step.rb', line 4

def id
  @id
end

#inputsObject

Returns the value of attribute inputs.



9
10
11
# File 'lib/workflow_rb/models/workflow_step.rb', line 9

def inputs
  @inputs
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/workflow_rb/models/workflow_step.rb', line 5

def name
  @name
end

#outcomesObject

Returns the value of attribute outcomes.



8
9
10
# File 'lib/workflow_rb/models/workflow_step.rb', line 8

def outcomes
  @outcomes
end

#outputsObject

Returns the value of attribute outputs.



10
11
12
# File 'lib/workflow_rb/models/workflow_step.rb', line 10

def outputs
  @outputs
end