Method: PureCloud::ConversationNotificationSocialExpression#==
- Defined in:
- lib/purecloud/models/conversation_notification_social_expression.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
# File 'lib/purecloud/models/conversation_notification_social_expression.rb', line 189 def ==(o) return true if self.equal?(o) self.class == o.class && state == o.state && id == o.id && == o. && == o. && == o. && preview_text == o.preview_text && recording_id == o.recording_id && held == o.held && provider == o.provider && disconnect_type == o.disconnect_type && start_hold_time == o.start_hold_time && connected_time == o.connected_time && disconnected_time == o.disconnected_time && additional_properties == o.additional_properties end |