Alejandro Acuña
2024-07-30 65a64a81d30f00f1fffd5da6866850e1308e1135
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
}