[docs]classLocationAddress(TelegramObject):""" Describes the physical address of a location. Source: https://core.telegram.org/bots/api#locationaddress """country_code:str"""The two-letter ISO 3166-1 alpha-2 country code of the country where the location is located"""state:str|None=None"""*Optional*. State of the location"""city:str|None=None"""*Optional*. City of the location"""street:str|None=None"""*Optional*. Street address of the location"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,country_code:str,state:str|None=None,city:str|None=None,street:str|None=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__(country_code=country_code,state=state,city=city,street=street,**__pydantic_kwargs,)