Source code for aiogram.enums.sticker_format

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"