Method: PureCloud::Callback#==
- Defined in:
- lib/purecloudplatformclientv2/models/callback.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/purecloudplatformclientv2/models/callback.rb', line 265 def ==(o) return true if self.equal?(o) self.class == o.class && state == o.state && id == o.id && segments == o.segments && direction == o.direction && held == o.held && disconnect_type == o.disconnect_type && start_hold_time == o.start_hold_time && dialer_preview == o.dialer_preview && callback_numbers == o.callback_numbers && callback_user_name == o.callback_user_name && script_id == o.script_id && skip_enabled == o.skip_enabled && timeout_seconds == o.timeout_seconds && connected_time == o.connected_time && disconnected_time == o.disconnected_time && callback_scheduled_time == o.callback_scheduled_time && automated_callback_config_id == o.automated_callback_config_id && provider == o.provider end |