
io.quarkus.test.services.operator.model.CustomResourceStatusCondition Maven / Gradle / Ivy
package io.quarkus.test.services.operator.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CustomResourceStatusCondition {
private String status;
private String type;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy