[docs]classStoryAreaTypeWeather(StoryAreaType):""" Describes a story area containing weather information. Currently, a story can have up to 3 weather areas. Source: https://core.telegram.org/bots/api#storyareatypeweather """type:Literal[StoryAreaTypeType.WEATHER]=StoryAreaTypeType.WEATHER"""Type of the area, always 'weather'"""temperature:float"""Temperature, in degree Celsius"""emoji:str"""Emoji representing the weather"""background_color:int"""A color of the area background in the ARGB format"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[StoryAreaTypeType.WEATHER]=StoryAreaTypeType.WEATHER,temperature:float,emoji:str,background_color:int,**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(type=type,temperature=temperature,emoji=emoji,background_color=background_color,**__pydantic_kwargs,)