com.capitalone.dashboard.response.RallyBurnDownResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.response;
import java.util.List;
public class RallyBurnDownResponse extends BaseResponse {
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