Method: OpenapiClient::ConditionSetRuleRead#valid?

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

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/openapi_client/models/condition_set_rule_read.rb', line 196

def valid?
  return false if @id.nil?
  return false if @key.nil?
  return false if @user_set.nil?
  return false if @permission.nil?
  return false if @resource_set.nil?
  return false if @organization_id.nil?
  return false if @project_id.nil?
  return false if @environment_id.nil?
  return false if @created_at.nil?
  return false if @updated_at.nil?
  true
end