
com.groupbyinc.api.request.MatchStrategy Maven / Gradle / Ivy
package com.groupbyinc.api.request;
import java.util.ArrayList;
import java.util.List;
/**
* @author osman
* @internal
*/
public class MatchStrategy {
private List rules = new ArrayList();
public List getRules() {
return rules;
}
public MatchStrategy setRules(List rules) {
this.rules = rules;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy