Method: Cosmos::ProcessStatusModel#as_json

Defined in:
lib/cosmos/models/process_status_model.rb

#as_jsonObject



64
65
66
67
68
69
70
71
72
73
74
# File 'lib/cosmos/models/process_status_model.rb', line 64

def as_json
  {
    'name' => @name,
    'state' => @state,
    'process_type' => @process_type,
    'detail' => @detail,
    'output' => @output,
    'plugin' => @plugin,
    'updated_at' => @updated_at
  }
end