
org.gitlab4j.api.models.TaskCompletionStatus Maven / Gradle / Ivy
package org.gitlab4j.api.models;
import java.io.Serializable;
import org.gitlab4j.api.utils.JacksonJson;
public class TaskCompletionStatus implements Serializable {
private static final long serialVersionUID = 1L;
private Integer count;
private Integer completedCount;
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getCompletedCount() {
return completedCount;
}
public void setCompletedCount(Integer completedCount) {
this.completedCount = completedCount;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy