cloud.eppo.ufc.dto.FlagConfigResponse 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;
public class FlagConfigResponse {
private Map flags;
public Map getFlags() {
return this.flags;
}
public void setFlags(Map flags) {
this.flags = flags;
}
}