asd
Alejandro Acuña
2024-09-16 816cb391a192e357426312ab8e591fd49d1d242e
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
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;
 
 
}