Method: OpenC3::PluginModel#as_json

Defined in:
lib/openc3/models/plugin_model.rb

#as_json(*_a) ⇒ Object



310
311
312
313
314
315
316
317
318
# File 'lib/openc3/models/plugin_model.rb', line 310

def as_json(*_a)
  {
    'name' => @name,
    'variables' => @variables,
    'plugin_txt_lines' => @plugin_txt_lines,
    'needs_dependencies' => @needs_dependencies,
    'updated_at' => @updated_at
  }
end