We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2dc629 commit a2df1fcCopy full SHA for a2df1fc
src/main/java/com/github/dockerjava/api/model/HealthCheck.java
@@ -56,7 +56,7 @@ public class HealthCheck implements Serializable {
56
* @since 1.26
57
*/
58
@JsonProperty("StartPeriod")
59
- private Integer startPeriod;
+ private Long startPeriod;
60
61
public Long getInterval() {
62
return interval;
@@ -94,11 +94,11 @@ public HealthCheck withRetries(Integer retries) {
94
return this;
95
}
96
97
- public Integer getStartPeriod() {
+ public Long getStartPeriod() {
98
return startPeriod;
99
100
101
- public HealthCheck withStartPeriod(Integer startPeriod) {
+ public HealthCheck withStartPeriod(Long startPeriod) {
102
this.startPeriod = startPeriod;
103
104
0 commit comments