Method: PureCloud::FacetStatistics#==
- Defined in:
- lib/purecloud/models/facet_statistics.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/purecloud/models/facet_statistics.rb', line 110 def ==(o) return true if self.equal?(o) self.class == o.class && count == o.count && min == o.min && max == o.max && mean == o.mean && std_deviation == o.std_deviation && date_min == o.date_min && date_max == o.date_max end |