Method: FormAPI::CreateSubmissionDataRequestData#==

Defined in:
lib/form_api/models/create_submission_data_request_data.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/form_api/models/create_submission_data_request_data.rb', line 205

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
       == o. &&
      auth_type == o.auth_type &&
      auth_second_factor_type == o.auth_second_factor_type &&
      auth_phone_number_hash == o.auth_phone_number_hash &&
      auth_session_started_at == o.auth_session_started_at &&
      auth_user_id_hash == o.auth_user_id_hash &&
      auth_session_id_hash == o.auth_session_id_hash &&
      auth_username_hash == o.auth_username_hash &&
      name == o.name &&
      fields == o.fields &&
      email == o.email &&
      auth_provider == o.auth_provider &&
      order == o.order
end