Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type 'a paging = 'a Paging_t.paging
type album_simplified = Album_t.album_simplified = {
album_type : string;
available_markets : string list;
href : string;
id : string;
name : string;
uri : string;
}
val write_paging :
(Bi_outbuf.t -> 'a -> unit) ->
Bi_outbuf.t ->
'a paging ->
unit
Output a JSON value of type paging
.
val string_of_paging :
(Bi_outbuf.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 -> Lexing.lexbuf -> 'a) ->
Yojson.Safe.lexer_state ->
Lexing.lexbuf ->
'a paging
Input JSON data of type paging
.
val paging_of_string :
(Yojson.Safe.lexer_state -> Lexing.lexbuf -> 'a) ->
string ->
'a paging
Deserialize JSON data of type paging
.
val write_album_simplified : Bi_outbuf.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 ->
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 write_search_wrapper : Bi_outbuf.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 ->
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
.