Method: IndexeaClient::WidgetBean#==

Defined in:
lib/indexea_client/models/widget_bean.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/indexea_client/models/widget_bean.rb', line 240

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      ident == o.ident &&
       == o. &&
      app == o.app &&
      name == o.name &&
      type == o.type &&
      sub_type == o.sub_type &&
      intro == o.intro &&
      queries == o.queries &&
      layout == o.layout &&
      settings == o.settings &&
      download_url == o.download_url &&
      created_at == o.created_at &&
      updated_at == o.updated_at &&
      status == o.status
end