Module TelegramApi.Video

module Video: sig .. end

type video = {
   file_id : string;
   width : int;
   height : int;
   duration : int;
   thumb : TelegramApi.PhotoSize.photo_size option;
   mime_type : string option;
   file_size : int option;
}
Represents a video file sent in a message
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
Create a video in a concise manner

Read a video out of some JSON

val read : Yojson.Safe.json -> video
module Out: sig .. end
This module deals with outgoing video messages