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

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

There is a newer version: 0.7.9
Show newest version
package com.podio.item;

import java.util.List;

public class ItemsResponse {

	/**
	 * Total number of items
	 */
	private int total;

	/**
	 * Total number of items matching the filter
	 */
	private int filtered;

	/**
	 * The items returned
	 */
	private List items;

	@Override
	public String toString() {
		return "ItemsResponse [total=" + total + ", filtered=" + filtered
				+ ", items=" + items + "]";
	}

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

	public int getFiltered() {
		return filtered;
	}

	public void setFiltered(int filtered) {
		this.filtered = filtered;
	}

	public List getItems() {
		return items;
	}

	public void setItems(List items) {
		this.items = items;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy