All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.response.RallyBurnDownResponse Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy