[docs]classInputVenueMessageContent(InputMessageContent):""" Represents the `content <https://core.telegram.org/bots/api#inputmessagecontent>`_ of a venue message to be sent as the result of an inline query. Source: https://core.telegram.org/bots/api#inputvenuemessagecontent """latitude:float"""Latitude of the venue in degrees"""longitude:float"""Longitude of the venue in degrees"""title:str"""Name of the venue"""address:str"""Address of the venue"""foursquare_id:Optional[str]=None"""*Optional*. Foursquare identifier of the venue, if known"""foursquare_type:Optional[str]=None"""*Optional*. Foursquare type of the venue, if known. (For example, 'arts_entertainment/default', 'arts_entertainment/aquarium' or 'food/icecream'.)"""google_place_id:Optional[str]=None"""*Optional*. Google Places identifier of the venue"""google_place_type:Optional[str]=None"""*Optional*. Google Places type of the venue. (See `supported types <https://developers.google.com/places/web-service/supported_types>`_.)"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,latitude:float,longitude:float,title:str,address:str,foursquare_id:Optional[str]=None,foursquare_type:Optional[str]=None,google_place_id:Optional[str]=None,google_place_type:Optional[str]=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__(latitude=latitude,longitude=longitude,title=title,address=address,foursquare_id=foursquare_id,foursquare_type=foursquare_type,google_place_id=google_place_id,google_place_type=google_place_type,**__pydantic_kwargs,)