package spotify-web-api

  1. Overview
  2. Docs
type 'a paging = 'a Paging_t.paging
type image = Image_t.image
type followers = Followers_t.followers
type external_urls = External_urls_t.external_urls
type artist = {
  1. external_urls : external_urls;
  2. followers : followers;
  3. genres : string list;
  4. href : string;
  5. id : string;
  6. images : image list;
  7. name : string;
  8. popularity : int;
  9. uri : string;
}
type search_wrapper = {
  1. artists : artist paging;
}
type artist_simplified = {
  1. external_urls : external_urls;
  2. href : string;
  3. id : string;
  4. name : string;
  5. uri : string;
}