Method: CrelateClient::InterviewResponse#==
- Defined in:
- lib/crelate_client/models/interview_response.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/crelate_client/models/interview_response.rb', line 177 def ==(o) return true if self.equal?(o) self.class == o.class && type == o.type && status == o.status && job_post == o.job_post && share_link == o.share_link && created_at == o.created_at && updated_at == o.updated_at && scheduled_at == o.scheduled_at && completed_at == o.completed_at && assigned_to == o.assigned_to && uuid == o.uuid && name == o.name end |