Module TelegramApi.Sticker

module Sticker: sig .. end

type sticker = {
   file_id : string;
   width : int;
   height : int;
   thumb : TelegramApi.PhotoSize.photo_size option;
   emoji : string option;
   file_size : int option;
}
Represents sticker messages
val create : file_id:string ->
width:int ->
height:int ->
?thumb:TelegramApi.PhotoSize.photo_size option ->
?emoji:string option ->
?file_size:int option -> unit -> sticker
Create a sticker in a concise manner

Read a sticker out of some JSON

val read : Yojson.Safe.json -> sticker
module Out: sig .. end
This module deals with outgoing sticker messages