module Out:sig..end
type video = {
|
chat_id : |
|
video : |
|
duration : |
|
caption : |
|
disable_notification : |
|
reply_to_message_id : |
|
reply_markup : |
video field can either be an existing file id or the raw bytes from a fileval 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 -> videovideo in a concise manner
Prepare a video for sending -- used in the case of a file id
val prepare : video -> stringvideo for sending -- used in the case of the raw bytesval prepare_multipart : video -> string -> string Lwt.t