com.statsig.EvaluationDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serversdk-test Show documentation
Show all versions of serversdk-test Show documentation
A Server SDK for macOS platform
package com.statsig;
public class EvaluationDetails {
public long lcut;
public long receivedAt;
public String reason;
EvaluationDetails(long lcut, long receivedAt, String reason) {
this.lcut = lcut;
this.receivedAt = receivedAt;
this.reason = reason;
}
}