Method: PureCloud::UserRecording#==
- Defined in:
- lib/purecloudplatformclientv2/models/user_recording.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/purecloudplatformclientv2/models/user_recording.rb', line 167 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && date_created == o.date_created && date_modified == o.date_modified && content_uri == o.content_uri && workspace == o.workspace && created_by == o.created_by && conversation == o.conversation && content_length == o.content_length && duration_milliseconds == o.duration_milliseconds && thumbnails == o.thumbnails && read == o.read && self_uri == o.self_uri end |