deleteStickerSet¶
Returns: bool
- class litegram.methods.delete_sticker_set.DeleteStickerSet(*, name: str, **extra_data: Any)[source]¶
Use this method to delete a sticker set that was created by the bot. Returns
Trueon success.
Usage¶
As bot method¶
result: bool = await bot.delete_sticker_set(...)
Method as object¶
Imports:
from litegram.methods.delete_sticker_set import DeleteStickerSetalias:
from litegram.methods import DeleteStickerSet
With specific bot¶
result: bool = await bot(DeleteStickerSet(...))
As reply into Webhook in handler¶
return DeleteStickerSet(...)