package spotify-web-api

  1. Overview
  2. Docs
type artist_simplified = Artist_t.artist_simplified
type track_simplified = {
  1. artists : artist_simplified list;
  2. available_markets : string list;
  3. disc_number : int;
  4. duration_ms : int;
  5. explicit : bool;
  6. href : string;
  7. id : string;
  8. name : string;
  9. preview_url : string;
  10. track_number : int;
  11. uri : string;
}
type external_urls = External_urls_t.external_urls
type external_ids = External_ids_t.external_ids
type album_simplified = Album_t.album_simplified
type track = {
  1. album : album_simplified;
  2. artists : artist_simplified list;
  3. available_markets : string list;
  4. disc_number : int;
  5. duration_ms : int;
  6. explicit : bool;
  7. external_ids : external_ids;
  8. external_urls : external_urls;
  9. href : string;
  10. id : string;
  11. name : string;
  12. popularity : int;
  13. preview_url : string;
  14. track_number : int;
  15. uri : string;
}
type 'a paging = 'a Paging_t.paging
type search_wrapper = {
  1. tracks : track paging;
}