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

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

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

/**
 * @author osman
 * @internal
 */
public class PartialMatchRule {
    private Integer terms;
    private Integer termsGreaterThan;
    private Integer mustMatch;
    private Boolean percentage;

    public Integer getTerms() {
        return terms;
    }

    public PartialMatchRule setTerms(Integer terms) {
        this.terms = terms;
        return this;
    }

    public Integer getTermsGreaterThan() {
        return termsGreaterThan;
    }

    public PartialMatchRule setTermsGreaterThan(Integer termsGreaterThan) {
        this.termsGreaterThan = termsGreaterThan;
        return this;
    }

    public Integer getMustMatch() {
        return mustMatch;
    }

    public PartialMatchRule setMustMatch(Integer mustMatch) {
        this.mustMatch = mustMatch;
        return this;
    }

    public Boolean getPercentage() {
        return percentage;
    }

    public PartialMatchRule setPercentage(Boolean percentage) {
        this.percentage = percentage;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy