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;
|
|
|
|
|
}
|