cloud.eppo.ufc.dto.Split 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 java.util.Map;
import java.util.Set;
public class Split {
private String variationKey;
private Set shards;
private Map extraLogging;
public String getVariationKey() {
return variationKey;
}
public void setVariationKey(String variationKey) {
this.variationKey = variationKey;
}
public Set getShards() {
return shards;
}
public void setShards(Set shards) {
this.shards = shards;
}
public Map getExtraLogging() {
return extraLogging;
}
public void setExtraLogging(Map extraLogging) {
this.extraLogging = extraLogging;
}
}