Source code for litegram.enums.sticker_format
from __future__ import annotations
from enum import Enum
[docs]
class StickerFormat(str, Enum):
"""
Format of the sticker
Source: https://core.telegram.org/bots/api#createnewstickerset
"""
STATIC = "static"
ANIMATED = "animated"
VIDEO = "video"