com.capitalone.dashboard.response.RallyBurnDownResponse Maven / Gradle / Ivy
package com.capitalone.dashboard.response;
import java.util.List;
public class RallyBurnDownResponse {
private List iterationDates;
private List toDoHours;
private List acceptedPoints;
private List totalTaskEstimate;
public List getTotalTaskEstimate() {
return totalTaskEstimate;
}
public void setTotalTaskEstimate(List totalTaskEstimate) {
this.totalTaskEstimate = totalTaskEstimate;
}
public List getIterationDates() {
return iterationDates;
}
public void setIterationDates(List iterationDates) {
this.iterationDates = iterationDates;
}
public List getToDoHours() {
return toDoHours;
}
public void setToDoHours(List toDoHours) {
this.toDoHours = toDoHours;
}
public List getAcceptedPoints() {
return acceptedPoints;
}
@Override
public String toString() {
return "RallyBurnDownResponse [iterationDates=" + iterationDates + ", toDoHours=" + toDoHours
+ ", acceptedPoints=" + acceptedPoints + "]";
}
public void setAcceptedPoints(List acceptedPoints) {
this.acceptedPoints = acceptedPoints;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy