com.launchdarkly.client.FeatureRequestEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
import com.google.gson.JsonElement;
import com.google.gson.annotations.SerializedName;
class FeatureRequestEvent extends Event {
JsonElement value;
@SerializedName("default")
JsonElement defaultVal;
@SerializedName("version")
Integer version;
@SerializedName("prereqOf")
String prereqOf;
FeatureRequestEvent(String key, LDUser user, JsonElement value, JsonElement defaultVal, Integer version, String prereqOf) {
super("feature", key, user);
this.value = value;
this.defaultVal = defaultVal;
this.version = version;
this.prereqOf = prereqOf;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy