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