Alejandro Acuña
2024-12-18 44b33e24b644459038edd956cfce7345ce3236c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package art.servers.gost.access.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 
@JsonPropertyOrder
({ 
    "Waiting period"
})
 
 
public class ConfigurationDetail_ZPR
{
    /**
     * JsonProperty("Waiting period")
     * Waiting period for infractions: Time delay in hours between the generation of detections by Neural cameras and their display
     * in the system due to possible temporary authorizations that may be processed afterwards.
     */
    @JsonProperty("Waiting period")
    public Integer  waitingPeriod;    
}