Method: LiteLLMClient::CachePingResponse#==

Defined in:
lib/litellm_client/models/cache_ping_response.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



168
169
170
171
172
173
174
175
176
177
# File 'lib/litellm_client/models/cache_ping_response.rb', line 168

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      status == o.status &&
      cache_type == o.cache_type &&
      ping_response == o.ping_response &&
      set_cache_response == o.set_cache_response &&
      litellm_cache_params == o.litellm_cache_params &&
      health_check_cache_params == o.health_check_cache_params
end