telegramsjs
    Preparing search index...

    Interface InputSticker

    This object describes a sticker to be added to a sticker set.

    interface InputSticker {
        emoji_list: string[];
        format: "video" | "static" | "animated";
        keywords?: string[];
        mask_position?: MaskPosition;
        sticker: MediaDataParam;
    }
    Index

    Properties

    emoji_list: string[]

    List of 1-20 emoji associated with the sticker

    format: "video" | "static" | "animated"

    Format of the added sticker, must be one of “static” for a .WEBP or .PNG image, “animated” for a .TGS animation, “video” for a .WEBM video

    keywords?: string[]

    List of 0-20 search keywords for the sticker with total length of up to 64 characters. For “regular” and “custom_emoji” stickers only.

    mask_position?: MaskPosition

    Position where the mask should be placed on faces. For “mask” stickers only.

    The added sticker. Pass a fileId as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. Animated and video stickers can't be uploaded via HTTP URL.