This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Description
Great library thank you!
I wanted to ask, is there any way to access / unmarshal the pagination links that get sent by jsonapis like these:
"links": {
"first": "http://somesite.com/movies?page[limit]=50&page[offset]=50",
"prev": "http://somesite.com/movies?page[limit]=50&page[offset]=0",
"next": "http://somesite.com/movies?page[limit]=50&page[offset]=100",
"last": "http://somesite.com/movies?page[limit]=50&page[offset]=500"
}
Ideally I'd like to provide access to these offsets in a separate struct as unmarshaling them into the Movie struct sounds strange! Thanks!