All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.statsig.EvaluationDetails Maven / Gradle / Ivy

There is a newer version: 0.28.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy