Interface SetStickerSetThumbnail

Sets a sticker set thumbnail. Request type for Tdjson#setStickerSetThumbnail.

interface SetStickerSetThumbnail {
    @type: "setStickerSetThumbnail";
    format: StickerFormat;
    name: string;
    thumbnail: InputFile;
    user_id: number;
}

Properties

@type: "setStickerSetThumbnail"

Format of the thumbnail; pass null if thumbnail is removed.

name: string

Sticker set name. The sticker set must be owned by the current user.

thumbnail: InputFile

Thumbnail to set; pass null to remove the sticker set thumbnail.

user_id: number

Sticker set owner; ignored for regular users.