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!
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:
Ideally I'd like to provide access to these offsets in a separate struct as unmarshaling them into the Movie struct sounds strange! Thanks!