Interface InputMessageSticker

A sticker message. Subtype of InputMessageContent.

interface InputMessageSticker {
    @type: "inputMessageSticker";
    emoji: string;
    height: number;
    sticker: InputFile;
    thumbnail: InputThumbnail;
    width: number;
}

Properties

@type: "inputMessageSticker"
emoji: string

Emoji used to choose the sticker.

height: number

Sticker height.

sticker: InputFile

Sticker to be sent.

thumbnail: InputThumbnail

Sticker thumbnail; pass null to skip thumbnail uploading.

width: number

Sticker width.