
com.github.dockerjava.api.model.WaitResponse Maven / Gradle / Ivy
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Represents a wait container command response
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class WaitResponse {
@JsonProperty("StatusCode")
private Integer statusCode;
public Integer getStatusCode() {
return statusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy