com.flagsense.model.Variant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for consuming flagsense services
package com.flagsense.model;
public class Variant {
private Object value;
private String name;
public Object getValue() {
return value;
}
public String getName() {
return name;
}
}