module Out:sig
..end
type
video = {
|
chat_id : |
|
video : |
|
duration : |
|
: |
|
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 -> video
video
in a concise manner
Prepare a video
for sending -- used in the case of a file id
val prepare : video -> string
video
for sending -- used in the case of the raw bytesval prepare_multipart : video -> string -> string Lwt.t