Method: OpenC3::WidgetModel#as_json

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

#as_json(*a) ⇒ Object



108
109
110
111
112
113
114
115
116
117
118
# File 'lib/openc3/models/widget_model.rb', line 108

def as_json(*a)
  {
    'name' => @name,
    'updated_at' => @updated_at,
    'plugin' => @plugin,
    'label' => @label,
    'items' => @items,
    'needs_dependencies' => @needs_dependencies,
    'disable_erb' => @disable_erb,
  }
end