module Out:sig
..end
type
voice = {
|
chat_id : |
|
voice : |
|
duration : |
|
disable_notification : |
|
reply_to_message_id : |
|
reply_markup : |
voice
field can either be an existing file id or the raw bytes from a fileval create : chat_id:int ->
voice:string ->
?duration:int option ->
?disable_notification:bool ->
?reply_to:int option ->
?reply_markup:TelegramApi.ReplyMarkup.reply_markup option ->
unit -> voice
voice
in a concise manner
Prepare a voice
for sending -- used in the case of a file id
val prepare : voice -> string
voice
for sending -- used in the case of the raw bytesval prepare_multipart : voice -> string -> string Lwt.t