Method: WorkflowStepResult_Shim#stepValues
- Defined in:
- lib/openstudio/workflow_json.rb
#stepValues ⇒ Object
130 131 132 133 134 135 136 |
# File 'lib/openstudio/workflow_json.rb', line 130 def stepValues result = [] @result[:step_values].each do |step_value| result << WorkflowStepResultValue_Shim.new(step_value[:name], step_value[:value], step_value[:type]) end return result end |