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