module Audio:sig
..end
type
audio = {
|
file_id : |
|
duration : |
|
performer : |
|
title : |
|
mime_type : |
|
file_size : |
val create : file_id:string ->
duration:int ->
?performer:string option ->
?title:string option ->
?mime_type:string option ->
?file_size:int option -> unit -> audio
audio
in a concise manner
Read an audio
out of some JSON
val read : Yojson.Safe.json -> audio
module Out:sig
..end