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
48
49
50
51
52
53
package art.servers.gost.access.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.List;
 
@JsonPropertyOrder
({ 
    "Storage",
    "Cleaners",
    "ATEX5",
    "Database detections",
    "Detections"
})
 
 
public class ConfigurationDetail
{
    /**
     * JsonProperty("Cleaners")
     */
    @JsonProperty("Cleaners")
    public List<ConfigurationDetail_Cleaner> cleaners = null;    
 
    /**
     * JsonProperty("Database detections")
     */
    @JsonProperty("Database detections") 
    public ConfigurationDetail_Database databaseDetections = null;
 
    /**
     * JsonProperty("ATEX5")
     */
    @JsonProperty("ATEX5")
    public ConfigurationDetail_ATEX5 atex5 = null;    
 
    
    /**
     * JsonProperty("Libre Office binary path")
     */
    @JsonProperty("Libre Office binary path")
    public String libreOfficebinaryPath = null;
 
    /**
     * JsonProperty("Detections")<br>
     */
    @JsonProperty("Detections") 
    public ConfigurationDetail_Detections detections = null;
    
    
    
    
}