Example: Next page token paging that uses a query parameter returned in a response body

The driver supports services that employ a paging mechanism that use query parameters passed in response bodies to return the next page of results. In the following example, the response body contains an element, next, that specifies the query parameter value, page_2.
"next": "page_2"
If the query parameter argument is next_page, the driver would send the following query parameter in a request to retrieve the next page of results.
next_page=page_2
To configure paging in this scenario, you need to specify the nextPageElement and nextPageParameter parameters in your paging entry. The nextPageElement configures the driver to use the value of the specified element in the response body as the value of the query parameter, while nextPageParameter specifies the query parameter argument to be used to retrieve the next page of results. The following is example of configuring paging using a query parameter passed in a response.
"#pageSizeParameter": "limit", 
"#maximumPageSize": 100, 
"#nextPageElement": "next", 
"#nextPageParameter": "next_page"