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