com.statsig.DynamicConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacore Show documentation
Show all versions of javacore Show documentation
A feature gating and a/b testing java library for statsig
The newest version!
package com.statsig;
import com.google.gson.JsonElement;
import java.util.Map;
public class DynamicConfig extends Experiment {
DynamicConfig(String name, Map value, String ruleID, EvaluationDetails evaluationDetails) {
super(name, value, ruleID, null, evaluationDetails);
}
}