Update comment on paginationrequests

This commit is contained in:
Steven Polley 2018-07-26 16:52:34 -06:00
parent 0eca613e65
commit 7c1534265b
1 changed files with 1 additions and 1 deletions

View File

@ -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)