Interface GetAllStickerEmojis

Returns unique emoji that correspond to stickers to be found by the getStickers(sticker_type, query, 1000000, chat_id). Request type for Tdjson#getAllStickerEmojis.

interface GetAllStickerEmojis {
    @type: "getAllStickerEmojis";
    chat_id: number;
    query: string;
    return_only_main_emoji?: boolean;
    sticker_type: StickerType;
}

Properties

@type: "getAllStickerEmojis"
chat_id: number

Chat identifier for which to find stickers.

query: string

Search query.

return_only_main_emoji?: boolean

Pass true if only main emoji for each found sticker must be included in the result.

sticker_type: StickerType

Type of the stickers to search for.