Method: PureCloud::InteractionStatAlertNotification#==
- Defined in:
- lib/purecloud/models/interaction_stat_alert_notification.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/purecloud/models/interaction_stat_alert_notification.rb', line 238 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && rule_id == o.rule_id && dimension == o.dimension && dimension_value == o.dimension_value && dimension_value_name == o.dimension_value_name && metric == o.metric && media_type == o.media_type && numeric_range == o.numeric_range && statistic == o.statistic && value == o.value && unread == o.unread && start_date == o.start_date && end_date == o.end_date && notification_users == o.notification_users && alert_types == o.alert_types end |