Method: PureCloud::ResourceConditionNode#==
- Defined in:
- lib/purecloud/models/resource_condition_node.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
112 113 114 115 116 117 118 119 120 |
# File 'lib/purecloud/models/resource_condition_node.rb', line 112 def ==(o) return true if self.equal?(o) self.class == o.class && variable_name == o.variable_name && conjunction == o.conjunction && operator == o.operator && operands == o.operands && terms == o.terms end |