Method: PureCloud::CallConversation#==
- Defined in:
- lib/purecloud/models/call_conversation.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
116 117 118 119 120 121 122 123 124 125 |
# File 'lib/purecloud/models/call_conversation.rb', line 116 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && participants == o.participants && other_media_uris == o.other_media_uris && recording_state == o.recording_state && self_uri == o.self_uri end |