Spotify Web API v0.4.0 Spotify.Pagings.PagingCursor View Source
The cursor-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 next
and cursors
that can be useful in future calls.
Link to this section Summary
Types
The cursor-based paging object
Link to this section Types
Link to this type
t(item_type)
View Source
t(item_type) :: %Spotify.Pagings.PagingCursor{cursors: Spotify.Pagings.cursors() | nil, href: Spotify.Pagings.href() | nil, items: Spotify.Pagings.items(item_type) | nil, limit: Spotify.Pagings.limit() | nil, next: Spotify.Pagings.next() | nil, total: Spotify.Pagings.total() | nil}
The cursor-based paging object.