mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Added basic support of Bot API 6.6 * Update descriptions * Added StickerFormat enum * Bump version * Refresh from docs * Fixed CommandStart * Fixed files uploading * Cover new functionality * Added changelog * Update texts
13 lines
235 B
Python
13 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"
|