com.podio.item.AppActivities 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.item;
import java.util.List;
import org.codehaus.jackson.annotate.JsonProperty;
public class AppActivities {
private List today;
private List lastWeek;
public List getToday() {
return today;
}
public void setToday(List today) {
this.today = today;
}
public List getLastWeek() {
return lastWeek;
}
@JsonProperty("last_week")
public void setLastWeek(List lastWeek) {
this.lastWeek = lastWeek;
}
}