Type Alias InputStickerSet

InputStickerSet:
    | tl.TypeInputStickerSet
    | {
        dice: string;
    }
    | {
        system:
            | "animated"
            | "animated_animations"
            | "premium_gifts"
            | "generic_animations"
            | "default_statuses"
            | "default_topic_icons"
            | "default_channel_statuses";
    }
    | StickerSet
    | string

Input sticker set. Can be one of:

  • Raw TL object
  • Sticker set short name
  • StickerSet object
  • { dice: "<emoji>" } (e.g. { dice: "🎲" }) - Used for fetching animated dice stickers
  • { system: string } - for system stickersets:
    • "animated" - Animated emojis stickerset
    • "animated_animations" - Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animated emoji)
    • "premium_gifts" - Stickers to show when receiving a gifted Telegram Premium subscription,
    • "generic_animations" - Generic animation stickerset containing animations to play when reacting to messages using a normal emoji without a custom animation
    • "default_statuses" - Default custom emoji status stickerset
    • "default_topic_icons" - Default custom emoji stickerset for forum topic icons
    • "default_channel_statuses" - Default custom emoji status stickerset for channels