Method: OpenapiClient::AuditLog#==

Defined in:
lib/openapi_client/models/audit_log.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/openapi_client/models/audit_log.rb', line 259

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      input == o.input &&
      result == o.result &&
      context == o.context &&
      action == o.action &&
      timestamp == o.timestamp &&
      query == o.query &&
      user_key == o.user_key &&
      user_email == o.user_email &&
      user_name == o.user_name &&
      resource_type == o.resource_type &&
      tenant == o.tenant &&
      decision == o.decision &&
      reason == o.reason &&
      pdp_config_id == o.pdp_config_id &&
      env_id == o.env_id &&
      project_id == o.project_id &&
      org_id == o.org_id
end