Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type artist_simplified = Artist_t.artist_simplified
type track_simplified = {
artists : artist_simplified list;
available_markets : string list;
disc_number : int;
duration_ms : int;
explicit : bool;
href : string;
id : string;
name : string;
preview_url : string;
track_number : int;
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 = {
album : album_simplified;
artists : artist_simplified list;
available_markets : string list;
disc_number : int;
duration_ms : int;
explicit : bool;
external_ids : external_ids;
external_urls : external_urls;
href : string;
id : string;
name : string;
popularity : int;
preview_url : string;
track_number : int;
uri : string;
}
type 'a paging = 'a Paging_t.paging