cloud.eppo.api.BanditResult 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.api;
public class BanditResult {
private final String variation;
private final String action;
public BanditResult(String variation, String action) {
this.variation = variation;
this.action = action;
}
public String getVariation() {
return variation;
}
public String getAction() {
return action;
}
}