builton.products.get({ size: 10, page: 0 }).then(pageProduct => {
// pageProduct.current contains the first page.
// pageProduct.page contains the current page number.
// pageProduct.paginationTotal contains the total number of item you can paginate through.
// pageProduct.next() will update `pageProduct.current` and `pageProduct.page` with the next page.
// pageProduct.previous() will update `pageProduct.current` and `pageProduct.page` with the previous page.
// pageProduct.goToPage(pageNumber) will update `pageProduct.current` and `pageProduct.page` with a specified page.
// The `next`, `previous`, and `goToPage` functions accept a callback and return a Promise.