Module TelegramApi.Sticker.Out

module Out: sig .. end
This module deals with outgoing sticker messages

type sticker = {
   chat_id : int;
   sticker : string;
   disable_notification : bool;
   reply_to_message_id : int option;
   reply_markup : TelegramApi.ReplyMarkup.reply_markup option;
}
Represents the outgoing sticker message. Note that the sticker field can either be an existing file id or the raw bytes from a file
val create : chat_id:int ->
sticker:string ->
?disable_notification:bool ->
?reply_to:int option ->
?reply_markup:TelegramApi.ReplyMarkup.reply_markup option ->
unit -> sticker
Create a sticker in a concise manner

Prepare a sticker for sending -- used in the case of a file id

val prepare : sticker -> string
Prepare a sticker for sending -- used in the case of the raw bytes
val prepare_multipart : sticker -> string -> string Lwt.t