com.groupbyinc.api.request.PartialMatchRule Maven / Gradle / Ivy
package com.groupbyinc.api.request;
import com.groupbyinc.api.interfaces.PartialMatchRuleInterface;
/**
* @internal
*/
public class PartialMatchRule implements PartialMatchRuleInterface {
private Integer terms;
private Integer termsGreaterThan;
private Integer mustMatch;
private Boolean percentage = false;
public Integer getTerms() {
return terms;
}
public com.groupbyinc.api.request.PartialMatchRule setTerms(Integer terms) {
this.terms = terms;
return this;
}
public Integer getTermsGreaterThan() {
return termsGreaterThan;
}
public com.groupbyinc.api.request.PartialMatchRule setTermsGreaterThan(Integer termsGreaterThan) {
this.termsGreaterThan = termsGreaterThan;
return this;
}
public Integer getMustMatch() {
return mustMatch;
}
public com.groupbyinc.api.request.PartialMatchRule setMustMatch(Integer mustMatch) {
this.mustMatch = mustMatch;
return this;
}
public Boolean getPercentage() {
return percentage;
}
public com.groupbyinc.api.request.PartialMatchRule setPercentage(Boolean percentage) {
this.percentage = percentage;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy