Method: PureCloud::ErrorBody#==
- Defined in:
- lib/purecloud/models/error_body.rb
#==(o) ⇒ Object
Check equality by comparing each attribute.
141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/purecloud/models/error_body.rb', line 141 def ==(o) return true if self.equal?(o) self.class == o.class && status == o.status && code == o.code && entity_id == o.entity_id && entity_name == o.entity_name && == o. && == o. && == o. && context_id == o.context_id && details == o.details && errors == o.errors end |