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

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

The newest version!
package com.algolia.search.models.indexing;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

public class Explain {

  public QueryMatch getQueryMatch() {
    return queryMatch;
  }

  public Explain setQueryMatch(QueryMatch queryMatch) {
    this.queryMatch = queryMatch;
    return this;
  }

  public Map getParams() {
    return params;
  }

  public Explain setParams(Map params) {
    this.params = params;
    return this;
  }

  @JsonProperty("match")
  private QueryMatch queryMatch;

  private Map params;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy