Layer 220
InputStickerSet
Abstract type representing one of 12 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.InputStickerSet interface.
Use any of the following constructors:
InputStickerSetEmpty
Empty constructor
InputStickerSetId
Stickerset by ID
InputStickerSetDice
Used for fetching animated dice stickers
InputStickerSetAnimatedEmoji
Animated emojis stickerset
InputStickerSetShortName
Stickerset by short name, from a stickerset deep link
InputStickerSetPremiumGifts
Stickers to show when receiving a gifted Telegram Premium subscription
InputStickerSetEmojiDefaultStatuses
Default custom emoji status stickerset
InputStickerSetEmojiGenericAnimations
Generic animation stickerset containing animations to play when reacting to messages using a normal
InputStickerSetAnimatedEmojiAnimations
Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animat
InputStickerSetEmojiDefaultTopicIcons
Default custom emoji stickerset for forum topic icons
InputStickerSetEmojiChannelDefaultStatuses
Default custom emoji status stickerset for channel statuses
InputStickerSetTonGifts
TON gifts stickerset.
Gogram Example
// InputStickerSet is an interface type // You can use any of the following constructors: var _ tg.InputStickerSet = &tg.InputStickerSetEmpty{} var _ tg.InputStickerSet = &tg.InputStickerSetId{} var _ tg.InputStickerSet = &tg.InputStickerSetDice{} var _ tg.InputStickerSet = &tg.InputStickerSetAnimatedEmoji{} var _ tg.InputStickerSet = &tg.InputStickerSetShortName{} // ... and 7 more constructors