Spotify Web API v0.4.0 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.

Spotify Docs

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() | nil, items: Spotify.Pagings.items(item_type) | nil, limit: Spotify.Pagings.limit() | nil, next: Spotify.Pagings.next() | nil, offset: Spotify.Pagings.offset() | nil, previous: Spotify.Pagings.previous() | nil, total: Spotify.Pagings.total() | nil}

The offset-based paging object.

Link to this section Functions