Files
Agro-365-bot/venv/lib/python3.12/site-packages/aiogram/enums/sticker_format.py
2025-09-01 19:12:16 +05:00

14 lines
235 B
Python

from enum import Enum
class StickerFormat(str, Enum):
"""
Format of the sticker
Source: https://core.telegram.org/bots/api#createnewstickerset
"""
STATIC = "static"
ANIMATED = "animated"
VIDEO = "video"