Module TelegramApi.Video.Out

module Out: sig .. end
This module deals with outgoing video messages

type video = {
   chat_id : int;
   video : string;
   duration : int option;
   caption : string option;
   disable_notification : bool;
   reply_to_message_id : int option;
   reply_markup : TelegramApi.ReplyMarkup.reply_markup option;
}
Represents the outgoing video message. Note that the video field can either be an existing file id or the raw bytes from a file
val create : chat_id:int ->
video:string ->
?duration:int option ->
?caption:string option ->
?disable_notification:bool ->
?reply_to:int option ->
?reply_markup:TelegramApi.ReplyMarkup.reply_markup option ->
unit -> video
Create a video in a concise manner

Prepare a video for sending -- used in the case of a file id

val prepare : video -> string
Prepare a video for sending -- used in the case of the raw bytes
val prepare_multipart : video -> string -> string Lwt.t