aiogram/aiogram/methods/delete_sticker_set.py
2023-03-11 04:09:57 +02:00

19 lines
446 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING
from .base import TelegramMethod
class DeleteStickerSet(TelegramMethod[bool]):
"""
Use this method to delete a sticker set that was created by the bot. Returns :code:`True` on success.
Source: https://core.telegram.org/bots/api#deletestickerset
"""
__returning__ = bool
__api_method__ = "deleteStickerSet"
name: str
"""Sticker set name"""