com.flagsense.model.EnvData 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;
import com.flagsense.enums.Status;
import java.util.List;
import java.util.Map;
public class EnvData {
private List prerequisites;
private Status status;
private String offVariant;
private Map targetUsers;
private Map> targetSegments;
private List targetSegmentsOrder;
private Map traffic;
public List getPrerequisites() {
return prerequisites;
}
public Status getStatus() {
return status;
}
public String getOffVariant() {
return offVariant;
}
public Map getTargetUsers() {
return targetUsers;
}
public Map> getTargetSegments() {
return targetSegments;
}
public List getTargetSegmentsOrder() {
return targetSegmentsOrder;
}
public Map getTraffic() {
return traffic;
}
}