Class Pagination


  • @Validated
    public class Pagination
    extends Object
    Pagination
    • Constructor Detail

      • Pagination

        public Pagination()
    • Method Detail

      • getCount

        @NotNull
        public @NotNull Long getCount()
        The number of objects in the entries array.
        Returns:
        count
      • setCount

        public void setCount​(Long count)
      • isHasMoreItems

        @NotNull
        public @NotNull Boolean isHasMoreItems()
        A boolean value which is **true** if there are more entities in the collection beyond those in this response. A true value means a request with a larger value for the **skipCount** or the **maxItems** parameter will return more entities.
        Returns:
        hasMoreItems
      • setHasMoreItems

        public void setHasMoreItems​(Boolean hasMoreItems)
      • getTotalItems

        public Long getTotalItems()
        An integer describing the total number of entities in the collection. The API might not be able to determine this value, in which case this property will not be present.
        Returns:
        totalItems
      • setTotalItems

        public void setTotalItems​(Long totalItems)
      • getSkipCount

        @NotNull
        public @NotNull Long getSkipCount()
        An integer describing how many entities exist in the collection before those included in this list.
        Returns:
        skipCount
      • setSkipCount

        public void setSkipCount​(Long skipCount)
      • getMaxItems

        @NotNull
        public @NotNull Long getMaxItems()
        The value of the **maxItems** parameter used to generate this list, or if there was no **maxItems** parameter the default value is 100
        Returns:
        maxItems
      • setMaxItems

        public void setMaxItems​(Long maxItems)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object