Method: OpenapiClient::AuditLog#valid?

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

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



245
246
247
248
249
250
251
252
253
254
255
# File 'lib/openapi_client/models/audit_log.rb', line 245

def valid?
  return false if @id.nil?
  return false if @action.nil?
  return false if @timestamp.nil?
  return false if @query.nil?
  return false if @pdp_config_id.nil?
  return false if @env_id.nil?
  return false if @project_id.nil?
  return false if @org_id.nil?
  true
end