Interface InputInlineResultSticker

Inline result containing a sticker

If message is not provided, InputInlineMessageMedia is used.

interface InputInlineResultSticker {
    id: string;
    media: string | RawInputDocument;
    message?: InputInlineMessage;
    type: "sticker";
}

Hierarchy (view full)

Properties

Properties

id: string

Unique ID of the result

media: string | RawInputDocument

The sticker itself. Can't be a URL.

Message to send when the result is selected.

By default, is automatically generated, and details about how it is generated can be found in subclasses' description

type: "sticker"