Method: TransferZero::ApiLog#==
- Defined in:
- lib/transferzero-sdk/models/api_log.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/transferzero-sdk/models/api_log.rb', line 146 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && request_method == o.request_method && request_url == o.request_url && request_body == o.request_body && request_headers == o.request_headers && response_status == o.response_status && response_body == o.response_body && response_headers == o.response_headers && created_at == o.created_at end |