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

com.podio.item.AppActivities Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy