sig
type voice = {
chat_id : int;
voice : string;
duration : int option;
reply_to_message_id : int option;
reply_markup : unit option;
}
val create :
chat_id:int ->
voice:string ->
?duration:int option ->
?reply_to:int option -> unit -> Api.Voice.Out.voice
val prepare : Api.Voice.Out.voice -> string
val prepare_multipart : Api.Voice.Out.voice -> string -> string Lwt.t
end