Method: OpenapiClient::ProcessorData#==

Defined in:
lib/openapi_client/models/processor_data.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/openapi_client/models/processor_data.rb', line 227

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      reference_number == o.reference_number &&
      authorization_code == o.authorization_code &&
      response_code == o.response_code &&
      network == o.network &&
      association_response_code == o.association_response_code &&
      response_message == o.response_message &&
      avs_response == o.avs_response &&
      cardholder_info_response == o.cardholder_info_response &&
      security_code_response == o.security_code_response &&
      merchant_advice_code_indicator == o.merchant_advice_code_indicator &&
      response_indicator == o.response_indicator &&
      debit_receipt_number == o.debit_receipt_number &&
      transaction_integrity_class == o.transaction_integrity_class
end