Method: Falcon::ModelsExclusionCondition#valid?
- Defined in:
- lib/crimson-falcon/models/models_exclusion_condition.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
157 158 159 160 161 162 163 |
# File 'lib/crimson-falcon/models/models_exclusion_condition.rb', line 157 def valid? return false if @description.nil? return false if @op.nil? return false if @prop.nil? return false if @value.nil? true end |