Method: UltracartClient::IntegrationLogQueryRequest#==

Defined in:
lib/ultracart_api/models/integration_log_query_request.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/ultracart_api/models/integration_log_query_request.rb', line 210

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      action == o.action &&
      auto_order_ids == o.auto_order_ids &&
      auto_order_oids == o.auto_order_oids &&
      direction == o.direction &&
      email == o.email &&
      file_names == o.file_names &&
      integration_log_oid == o.integration_log_oid &&
      item_id == o.item_id &&
      item_ipn_oid == o.item_ipn_oid &&
      log_dts_begin == o.log_dts_begin &&
      log_dts_end == o.log_dts_end &&
      log_type == o.log_type &&
      logger_id == o.logger_id &&
      logger_name == o.logger_name &&
      order_ids == o.order_ids &&
      status == o.status
end