cloud.eppo.ufc.dto.Variation 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 Variation {
private final String key;
private final EppoValue value;
public Variation(String key, EppoValue value) {
this.key = key;
this.value = value;
}
public String getKey() {
return this.key;
}
public EppoValue getValue() {
return value;
}
}