Method: MergeHRISClient::Issue#==

Defined in:
lib/merge_hris_client/models/issue.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/merge_hris_client/models/issue.rb', line 148

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      status == o.status &&
      error_description == o.error_description &&
      end_user == o.end_user &&
      first_incident_time == o.first_incident_time &&
      last_incident_time == o.last_incident_time &&
      is_muted == o.is_muted &&
      error_details == o.error_details
end