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 = Track_t.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 = Track_t.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
val write_artist_simplified : Stdlib.Buffer.t -> artist_simplified -> unit
Output a JSON value of type artist_simplified
.
val string_of_artist_simplified : ?len:int -> artist_simplified -> string
Serialize a value of type artist_simplified
into a JSON string.
val read_artist_simplified :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
artist_simplified
Input JSON data of type artist_simplified
.
val artist_simplified_of_string : string -> artist_simplified
Deserialize JSON data of type artist_simplified
.
val write_track_simplified : Stdlib.Buffer.t -> track_simplified -> unit
Output a JSON value of type track_simplified
.
val string_of_track_simplified : ?len:int -> track_simplified -> string
Serialize a value of type track_simplified
into a JSON string.
val read_track_simplified :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
track_simplified
Input JSON data of type track_simplified
.
val track_simplified_of_string : string -> track_simplified
Deserialize JSON data of type track_simplified
.
val write_external_urls : Stdlib.Buffer.t -> external_urls -> unit
Output a JSON value of type external_urls
.
val string_of_external_urls : ?len:int -> external_urls -> string
Serialize a value of type external_urls
into a JSON string.
val read_external_urls :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
external_urls
Input JSON data of type external_urls
.
val external_urls_of_string : string -> external_urls
Deserialize JSON data of type external_urls
.
val write_external_ids : Stdlib.Buffer.t -> external_ids -> unit
Output a JSON value of type external_ids
.
val string_of_external_ids : ?len:int -> external_ids -> string
Serialize a value of type external_ids
into a JSON string.
val read_external_ids :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
external_ids
Input JSON data of type external_ids
.
val external_ids_of_string : string -> external_ids
Deserialize JSON data of type external_ids
.
val write_album_simplified : Stdlib.Buffer.t -> album_simplified -> unit
Output a JSON value of type album_simplified
.
val string_of_album_simplified : ?len:int -> album_simplified -> string
Serialize a value of type album_simplified
into a JSON string.
val read_album_simplified :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
album_simplified
Input JSON data of type album_simplified
.
val album_simplified_of_string : string -> album_simplified
Deserialize JSON data of type album_simplified
.
val string_of_track : ?len:int -> track -> string
Serialize a value of type track
into a JSON string.
val read_track : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> track
Input JSON data of type track
.
val write_paging :
(Stdlib.Buffer.t -> 'a -> unit) ->
Stdlib.Buffer.t ->
'a paging ->
unit
Output a JSON value of type paging
.
val string_of_paging :
(Stdlib.Buffer.t -> 'a -> unit) ->
?len:int ->
'a paging ->
string
Serialize a value of type paging
into a JSON string.
val read_paging :
(Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> 'a) ->
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
'a paging
Input JSON data of type paging
.
val paging_of_string :
(Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> 'a) ->
string ->
'a paging
Deserialize JSON data of type paging
.
val write_search_wrapper : Stdlib.Buffer.t -> search_wrapper -> unit
Output a JSON value of type search_wrapper
.
val string_of_search_wrapper : ?len:int -> search_wrapper -> string
Serialize a value of type search_wrapper
into a JSON string.
val read_search_wrapper :
Yojson.Safe.lexer_state ->
Stdlib.Lexing.lexbuf ->
search_wrapper
Input JSON data of type search_wrapper
.
val search_wrapper_of_string : string -> search_wrapper
Deserialize JSON data of type search_wrapper
.