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

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

There is a newer version: 3.2.0
Show newest version
package com.groupbyinc.api.model;

import java.util.List;

/**
 * Created by groupby on 07/01/15.
 */
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 RefinementMatch setName(String name) {
        this.name = name;
        return this;
    }

    public List getValues() {
        return values;
    }

    public RefinementMatch setValues(List values) {
        this.values = values;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy