package telegraml

  1. Overview
  2. Docs
type sticker = {
  1. file_id : string;
  2. width : int;
  3. height : int;
  4. thumb : PhotoSize.photo_size option;
  5. emoji : string option;
  6. file_size : int option;
}

Represents sticker messages

val create : file_id:string -> width:int -> height:int -> ?thumb: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

Read a sticker out of some JSON

module Out : sig ... end

This module deals with outgoing sticker messages