Please Add Previous or Before to HubSpot CRM API v3 Pagination Response

Hi,

It would be very useful and reasonable to include a previous or before value in the HubSpot CRM API v3 paginated response object. (Reference: GET /crm/v3/objects/contacts Accounts Dashboard | HubSpot ).

The benefit is standard pagination links could be more easily implemented on each page like:

<Previous 1 2 3 4 5 … Next>

The previous object addition might look something like this:

"paging": {
 "next": {
 "after": "NTI1Cg%3D%3D",
 "link": "?after=NTI1Cg%3D%3D"
 }
 "previous":{
 "before": "XXXXXX",
 "link": "?before=XXXXXX"
 }
}

Most other paginated API responses include the previous value at a minimum, and may also include first, and last, and sometimes discreet pages. Currently, in HubSpot CRM API v3, there is only an after value returned in paging.next.after which requires awkwardly storing values in order to reference a previous page.

Thanks!