com.podio.task.TaskTotals Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.task;
public class TaskTotals {
/**
* The task totals where the active user is responsible
*/
private TaskTotal responsible;
/**
* The tasks that the active user have created and delegated to others
*/
private TaskTotal delegated;
public TaskTotal getResponsible() {
return responsible;
}
public void setResponsible(TaskTotal responsible) {
this.responsible = responsible;
}
public TaskTotal getDelegated() {
return delegated;
}
public void setDelegated(TaskTotal delegated) {
this.delegated = delegated;
}
}