Method: FormAPI::SubmissionDataRequest#==
- Defined in:
- lib/form_api/models/submission_data_request.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'lib/form_api/models/submission_data_request.rb', line 284 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && email == o.email && order == o.order && fields == o.fields && == o. && state == o.state && viewed_at == o.viewed_at && completed_at == o.completed_at && auth_type == o.auth_type && auth_second_factor_type == o.auth_second_factor_type && auth_provider == o.auth_provider && auth_session_started_at == o.auth_session_started_at && auth_session_id_hash == o.auth_session_id_hash && auth_user_id_hash == o.auth_user_id_hash && auth_username_hash == o.auth_username_hash && auth_phone_number_hash == o.auth_phone_number_hash end |