cloud.eppo.ufc.dto.TargetingCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-common-jvm Show documentation
Show all versions of sdk-common-jvm Show documentation
Eppo SDK for JVM shared library
package cloud.eppo.ufc.dto;
import cloud.eppo.api.EppoValue;
public class TargetingCondition {
private final OperatorType operator;
private final String attribute;
private final EppoValue value;
public TargetingCondition(OperatorType operator, String attribute, EppoValue value) {
this.operator = operator;
this.attribute = attribute;
this.value = value;
}
public OperatorType getOperator() {
return operator;
}
public String getAttribute() {
return attribute;
}
public EppoValue getValue() {
return value;
}
}