module Video:sig
..end
type
video = {
|
file_id : |
|
width : |
|
height : |
|
duration : |
|
thumb : |
|
mime_type : |
|
file_size : |
val create : file_id:string ->
width:int ->
height:int ->
duration:int ->
?thumb:TelegramApi.PhotoSize.photo_size option ->
?mime_type:string option ->
?file_size:int option -> unit -> video
video
in a concise manner
Read a video
out of some JSON
val read : Yojson.Safe.json -> video
module Out:sig
..end