/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.mzdb; import java.util.List; import java.util.HashMap; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.mzdb.EntityList; /** * Paged collection of EntityLists. EntityLists are created at the tenant level, but instances of the EntityLists are implicitly created at the appropriate context level as entities are added or removed from the EntityList. */ @JsonIgnoreProperties(ignoreUnknown = true) public class EntityListCollection implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The total number of pages of the results divided per the `pageSize`. */ protected Integer pageCount; public Integer getPageCount() { return this.pageCount; } public void setPageCount(Integer pageCount) { this.pageCount = pageCount; } /** * The number of results to display on each page when creating paged results from a query. The amount is divided and displayed on the `pageCount `amount of pages. The default is 20 and maximum value is 200 per page. */ protected Integer pageSize; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } /** * When creating paged results from a query, this value indicates the zero-based offset in the complete result set where the returned entities begin. For example, with a `pageSize `of 25, to get the 51st through the 75th items, use `startIndex=50`. */ protected Integer startIndex; public Integer getStartIndex() { return this.startIndex; } public void setStartIndex(Integer startIndex) { this.startIndex = startIndex; } /** * The total number of items in the list. */ protected Integer totalCount; public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } /** * A list of requested items. All returned data is provided in an items array.For a failed request, the returned response may be success with an empty item array. */ protected List<EntityList> items; public List<EntityList> getItems() { return this.items; } public void setItems(List<EntityList> items) { this.items = items; } }