Interface SearchStickers

Searches for stickers from public sticker sets that correspond to any of the given emoji. Request type for Tdjson#searchStickers.

interface SearchStickers {
    @type: "searchStickers";
    emojis: string;
    input_language_codes: string[];
    limit: number;
    offset: number;
    query: string;
    sticker_type: StickerType;
}

Properties

@type: "searchStickers"
emojis: string

Space-separated list of emojis to search for.

input_language_codes: string[]

List of possible IETF language tags of the user's input language; may be empty if unknown.

limit: number

The maximum number of stickers to be returned; 0-100.

offset: number

The offset from which to return the stickers; must be non-negative.

query: string

Query to search for; may be empty to search for emoji only.

sticker_type: StickerType

Type of the stickers to return.