Source code for aiogram.enums.story_area_type_type

from enum import Enum


[docs] class StoryAreaTypeType(str, Enum): """ This object represents input profile photo type Source: https://core.telegram.org/bots/api#storyareatype """ LOCATION = "location" SUGGESTED_REACTION = "suggested_reaction" LINK = "link" WEATHER = "weather" UNIQUE_GIFT = "unique_gift"