mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
19 lines
446 B
Python
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"""
|