From 7c1534265bc9d1974f14f0edb88dc5652435d345 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Thu, 26 Jul 2018 16:52:34 -0600 Subject: [PATCH] Update comment on paginationrequests --- 3.0/connectwise/requests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.0/connectwise/requests.go b/3.0/connectwise/requests.go index 2e81815..1cc6cd0 100644 --- a/3.0/connectwise/requests.go +++ b/3.0/connectwise/requests.go @@ -35,7 +35,7 @@ func (cw *Site) NewRequest(restAction, method string, body []byte) *Request { } //NewPaginationRequest is a method which takes in the mandatory fields to paginate -//TBD - finish this +//TBD - finish this. The last thing I remember was running into issues with static typing func (cw *Site) NewPaginationRequest(restAction, method string, body []byte, pageSize, pageNumber int) (*[]Company, error) { req := cw.NewRequest("/company/companies", "GET", nil)