com.algolia.model.analytics.DailyNoResultsRates Maven / Gradle / Ivy
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost
// - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
package com.algolia.model.analytics;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
import java.util.Objects;
/** DailyNoResultsRates */
public class DailyNoResultsRates {
@JsonProperty("date")
private String date;
@JsonProperty("noResultCount")
private Integer noResultCount;
@JsonProperty("count")
private Integer count;
@JsonProperty("rate")
private Double rate;
public DailyNoResultsRates setDate(String date) {
this.date = date;
return this;
}
/** Date in the format YYYY-MM-DD. */
@javax.annotation.Nonnull
public String getDate() {
return date;
}
public DailyNoResultsRates setNoResultCount(Integer noResultCount) {
this.noResultCount = noResultCount;
return this;
}
/** Number of searches without any results. */
@javax.annotation.Nonnull
public Integer getNoResultCount() {
return noResultCount;
}
public DailyNoResultsRates setCount(Integer count) {
this.count = count;
return this;
}
/** Number of searches. */
@javax.annotation.Nonnull
public Integer getCount() {
return count;
}
public DailyNoResultsRates setRate(Double rate) {
this.rate = rate;
return this;
}
/**
* No results rate, calculated as number of searches with zero results divided by the total number
* of searches. minimum: 0 maximum: 1
*/
@javax.annotation.Nonnull
public Double getRate() {
return rate;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DailyNoResultsRates dailyNoResultsRates = (DailyNoResultsRates) o;
return (
Objects.equals(this.date, dailyNoResultsRates.date) &&
Objects.equals(this.noResultCount, dailyNoResultsRates.noResultCount) &&
Objects.equals(this.count, dailyNoResultsRates.count) &&
Objects.equals(this.rate, dailyNoResultsRates.rate)
);
}
@Override
public int hashCode() {
return Objects.hash(date, noResultCount, count, rate);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DailyNoResultsRates {\n");
sb.append(" date: ").append(toIndentedString(date)).append("\n");
sb.append(" noResultCount: ").append(toIndentedString(noResultCount)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" rate: ").append(toIndentedString(rate)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy