Files
music-iyoyah-bot/venv/lib/python3.12/site-packages/aiogram/enums/sticker_format.py
2026-03-25 11:20:05 +07: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"