Module Api.Sticker

module Sticker: sig .. end

type sticker = {
   file_id : string;
   width : int;
   height : int;
   thumb : Api.PhotoSize.photo_size option;
   file_size : int option;
}
Represents sticker messages

Create a `sticker` in a concise manner

val create : file_id:string ->
width:int ->
height:int ->
?thumb:Api.PhotoSize.photo_size option ->
?file_size:int option -> unit -> sticker
Read a `sticker` out of some JSON
val read : Yojson.Safe.json -> sticker