Method: PureCloud::ChatConversationNotificationParticipants#==

Defined in:
lib/purecloud/models/chat_conversation_notification_participants.rb

#==(o) ⇒ Object

Check equality by comparing each attribute.



308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'lib/purecloud/models/chat_conversation_notification_participants.rb', line 308

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      wrapup_skipped == o.wrapup_skipped &&
      purpose == o.purpose &&
      held == o.held &&
      wrapup_timeout_ms == o.wrapup_timeout_ms &&
      error_info == o.error_info &&
      room_id == o.room_id &&
      provider == o.provider &&
      wrapup_required == o.wrapup_required &&
      connected_time == o.connected_time &&
      disconnect_type == o.disconnect_type &&
      start_time == o.start_time &&
      id == o.id &&
      state == o.state &&
      direction == o.direction &&
      wrapup == o.wrapup &&
      address == o.address &&
      external_contact == o.external_contact &&
      external_organization == o.external_organization &&
      script == o.script &&
      name == o.name &&
      wrapup_prompt == o.wrapup_prompt &&
      attributes == o.attributes &&
      end_time == o.end_time &&
      start_hold_time == o.start_hold_time &&
      user == o.user &&
      queue == o.queue
end