Method: TogaiClient::QueryFilter#valid?

Defined in:
lib/togai_client/models/query_filter.rb

#valid?Boolean

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



111
112
113
114
115
116
117
# File 'lib/togai_client/models/query_filter.rb', line 111

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @column.nil?
  return false if @operator.nil?
  return false if @args.nil?
  true
end