package art.servers.gost.access.types.neural;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|
|
|
@JsonPropertyOrder
|
({
|
"Enabled",
|
"Valid",
|
"Last timestamp update epoch",
|
"Last timestamp update UTC",
|
"Last timestamp update local",
|
"Latitude",
|
"Longitude"
|
})
|
|
|
|
|
public class NeuralStatusGPS
|
{
|
@JsonProperty("Enabled")
|
public boolean enabled = false;
|
|
@JsonProperty("Valid")
|
public boolean getValid()
|
{
|
return false;
|
}
|
|
@JsonProperty("Last timestamp update epoch")
|
public long lastTimestampUpdate;
|
|
@JsonProperty("Last timestamp update UTC")
|
public String lastTimestampUpdateUTC;
|
|
@JsonProperty("Last timestamp update local")
|
public String lastTimestampUpdateLocal;
|
|
@JsonProperty("Latitude")
|
public String latitude;
|
|
@JsonProperty("Longitude")
|
public String longitude;
|
}
|