From 6f17238a3216644a99405751c1cd93076a8f0d13 Mon Sep 17 00:00:00 2001 From: gfleury Date: Mon, 16 Mar 2020 14:02:16 -0300 Subject: [PATCH] Adding Paged responses helper --- api_response.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/api_response.go b/api_response.go index 7b8a8cf..690aa5d 100644 --- a/api_response.go +++ b/api_response.go @@ -521,8 +521,10 @@ func NewRawAPIResponse(r *http.Response) (*APIResponse, error) { } // HasNextPage returns if response is paged and has next page and where it does start -func HasNextPage(response *APIResponse) (bool, int) { - isLastPage := response.Values["isLastPage"].(bool) - nextPageStart := int(response.Values["nextPageStart"].(float64)) +func HasNextPage(response *APIResponse) (isLastPage bool, nextPageStart int) { + isLastPage = response.Values["isLastPage"].(bool) + if !isLastPage { + nextPageStart = int(response.Values["nextPageStart"].(float64)) + } return !isLastPage, nextPageStart }