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

com.groupbyinc.api.model.RefinementMatch Maven / Gradle / Ivy

The newest version!
package com.groupbyinc.api.model;

import java.util.List;

public class RefinementMatch {

  public static class Value {

    private String value;
    private Integer count;

    public String getValue() {
      return value;
    }

    public Value setValue(String value) {
      this.value = value;
      return this;
    }

    public Integer getCount() {
      return count;
    }

    public Value setCount(Integer count) {
      this.count = count;
      return this;
    }
  }

  private String name;
  private List values;

  public String getName() {
    return name;
  }

  public com.groupbyinc.api.model.RefinementMatch setName(String name) {
    this.name = name;
    return this;
  }

  public List getValues() {
    return values;
  }

  public com.groupbyinc.api.model.RefinementMatch setValues(List values) {
    this.values = values;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy