class Algolia::Recommend::BaseRecommendRequest

def ==(other)

Parameters:
  • Object (Object) -- to be compared
def ==(other)
  return true if equal?(other)
  self.class == other.class &&
    index_name == other.index_name &&
    threshold == other.threshold &&
    max_recommendations == other.max_recommendations &&
    query_parameters == other.query_parameters
end