messages.UninstallStickerSet
- class pyrogram.raw.functions.messages.UninstallStickerSet
Uninstall a stickerset
- Details:
Layer:
223ID:
F96E55DE
- Parameters:
stickerset (
InputStickerSet) – The stickerset to uninstall- Returns:
bool
TL Schema
messages.uninstallStickerSet#f96e55de
stickerset:InputStickerSet
= Bool
Parameter Tree
UninstallStickerSet
└── stickerset →
InputStickerSet│ ├── id →
long│ └── access_hash →
long│ └── short_name →
string│ └── emoticon →
stringExample
await app.invoke(
UninstallStickerSet(
stickerset=InputStickerSetEmpty(),
)
)