Class Paging<T>

    • Field Detail

      • href

        public String href

        A link to the Web API endpoint returning the full result of the request

      • items

        public List<T> items

        The requested content

      • limit

        public int limit

        The maximum number of items in the response (as set in the query or by default).

      • next

        public String next

        URL to the next page of items. ( null if none)

      • offset

        public int offset

        The offset of the items returned (as set in the query or by default)

      • previous

        public String previous

        URL to the previous page of items. ( null if none)

      • total

        public int total

        The total number of items available to return.

    • Constructor Detail

      • Paging

        public Paging()