Method: WorkflowStepResult_Shim#stepValues
- Defined in:
- lib/openstudio/workflow_json.rb
#stepValues ⇒ Object
149 150 151 152 153 154 155 |
# File 'lib/openstudio/workflow_json.rb', line 149 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 |