com.podio.item.ItemsResponse 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;
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;
}
}