com.podio.task.TasksWithResponsible 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;
import java.util.List;
import com.podio.contact.ProfileMini;
public class TasksWithResponsible {
private ProfileMini responsible;
private List tasks;
public ProfileMini getResponsible() {
return responsible;
}
public void setResponsible(ProfileMini responsible) {
this.responsible = responsible;
}
public List getTasks() {
return tasks;
}
public void setTasks(List tasks) {
this.tasks = tasks;
}
}