All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.algolia.search.models.indexing.SearchForFacetResponse Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.indexing;

import java.io.Serializable;
import java.util.List;

public class SearchForFacetResponse implements Serializable {

  public List getFacetHits() {
    return facetHits;
  }

  public SearchForFacetResponse setFacetHits(List facetHits) {
    this.facetHits = facetHits;
    return this;
  }

  public Boolean getExhaustiveFacetsCount() {
    return ExhaustiveFacetsCount;
  }

  public SearchForFacetResponse setExhaustiveFacetsCount(Boolean exhaustiveFacetsCount) {
    ExhaustiveFacetsCount = exhaustiveFacetsCount;
    return this;
  }

  public Integer getProcessingTimeMS() {
    return processingTimeMS;
  }

  public SearchForFacetResponse setProcessingTimeMS(Integer processingTimeMS) {
    this.processingTimeMS = processingTimeMS;
    return this;
  }

  private List facetHits;
  private Boolean ExhaustiveFacetsCount;
  private Integer processingTimeMS;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy