Interface PushMessageContentSticker

A message with a sticker. Subtype of PushMessageContent.

interface PushMessageContentSticker {
    @type: "pushMessageContentSticker";
    emoji: string;
    is_pinned?: boolean;
    sticker: Sticker;
}

Properties

@type: "pushMessageContentSticker"
emoji: string

Emoji corresponding to the sticker; may be empty.

is_pinned?: boolean

True, if the message is a pinned message with the specified content.

sticker: Sticker

Message content; may be null.