[docs]classStoryAreaTypeLocation(StoryAreaType):""" Describes a story area pointing to a location. Currently, a story can have up to 10 location areas. Source: https://core.telegram.org/bots/api#storyareatypelocation """type:Literal[StoryAreaTypeType.LOCATION]=StoryAreaTypeType.LOCATION"""Type of the area, always 'location'"""latitude:float"""Location latitude in degrees"""longitude:float"""Location longitude in degrees"""address:Optional[LocationAddress]=None"""*Optional*. Address of the location"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[StoryAreaTypeType.LOCATION]=StoryAreaTypeType.LOCATION,latitude:float,longitude:float,address:Optional[LocationAddress]=None,**__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,latitude=latitude,longitude=longitude,address=address,**__pydantic_kwargs,)