package art.servers.gost.access.types.neural;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|
|
@JsonPropertyOrder
|
({
|
"Timestamp epoch",
|
"Timestamp UTC",
|
"Timestamp locale",
|
"Online",
|
"VID",
|
"NTP",
|
"GPS",
|
})
|
|
|
|
|
public class NeuralStatusPeriod
|
{
|
@JsonProperty("Timestamp epoch")
|
public long timestampEpoch = 0;
|
|
@JsonProperty("Timestamp UTC")
|
public String timestampUTC = null;
|
|
@JsonProperty("Timestamp locale")
|
public String timestampLocale = null;
|
|
@JsonProperty("Online")
|
public boolean online = false;
|
|
@JsonProperty("VID")
|
public boolean vid = false;
|
|
@JsonProperty("NTP")
|
public boolean ntp = false;
|
|
@JsonProperty("GPS")
|
public boolean gps = false;
|
|
|
}
|