mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
14 lines
235 B
Python
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"
|