![JAR search and dependency download from the Maven repository](/logo.png)
com.podio.item.ItemsResponse Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy