Interface MessageSticker

A sticker message. Subtype of MessageContent.

interface MessageSticker {
    @type: "messageSticker";
    is_premium?: boolean;
    sticker: Sticker;
}

Properties

@type: "messageSticker"
is_premium?: boolean

True, if premium animation of the sticker must be played.

sticker: Sticker

The sticker description.