Spotify Web API v0.2.2 Spotify.Pagings.Paging View Source
The offset-based paging object is a container for a set of objects.
It contains a key called items
(whose value is an array of the requested objects)
along with other keys like previous
, next
, and limit
that can be useful in future calls.
Link to this section Summary
Types
The offset-based paging object
Link to this section Types
Link to this type
t(item_type)
View Source
t(item_type) :: %Spotify.Pagings.Paging{href: Spotify.Pagings.href(), items: Spotify.Pagings.items(item_type), limit: Spotify.Pagings.limit(), next: Spotify.Pagings.next(), offset: Spotify.Pagings.offset(), previous: Spotify.Pagings.previous(), total: Spotify.Pagings.total()}
The offset-based paging object.