Interface StickerSetInfo

Represents short information about a sticker set.

interface StickerSetInfo {
    @type: "stickerSetInfo";
    covers: Sticker[];
    id: string;
    is_allowed_as_chat_emoji_status?: boolean;
    is_archived?: boolean;
    is_installed?: boolean;
    is_official?: boolean;
    is_owned?: boolean;
    is_viewed?: boolean;
    name: string;
    needs_repainting?: boolean;
    size: number;
    sticker_type: StickerType;
    thumbnail: Thumbnail;
    thumbnail_outline: Outline;
    title: string;
}

Properties

@type: "stickerSetInfo"
covers: Sticker[]

Up to the first 5 stickers from the set, depending on the context. If the application needs more stickers the full sticker set needs to be requested.

id: string

Identifier of the sticker set.

is_allowed_as_chat_emoji_status?: boolean

True, if stickers in the sticker set are custom emoji that can be used as chat emoji status; for custom emoji sticker sets only.

is_archived?: boolean

True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously.

is_installed?: boolean

True, if the sticker set has been installed by the current user.

is_official?: boolean

True, if the sticker set is official.

is_owned?: boolean

True, if the sticker set is owned by the current user.

is_viewed?: boolean

True for already viewed trending sticker sets.

name: string

Name of the sticker set.

needs_repainting?: boolean

True, if stickers in the sticker set are custom emoji that must be repainted; for custom emoji sticker sets only.

size: number

Total number of stickers in the set.

sticker_type: StickerType

Type of the stickers in the set.

thumbnail: Thumbnail

Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed.

thumbnail_outline: Outline

Sticker set thumbnail's outline; may be null if unknown.

title: string

Title of the sticker set.