Method: PureCloud::RecordingDataV2Notification#==
- Defined in:
- lib/purecloud/models/recording_data_v2_notification.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/purecloud/models/recording_data_v2_notification.rb', line 198 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 && workspace == o.workspace && created_by == o.created_by && content_type == o.content_type && content_length == o.content_length && filename == o.filename && change_number == o.change_number && date_uploaded == o.date_uploaded && uploaded_by == o.uploaded_by && lock_info == o.lock_info && self_uri == o.self_uri && duration_millieconds == o.duration_millieconds && conversation == o.conversation && read == o.read end |