telegram.InputVenueMessageContent¶
-
class
telegram.InputVenueMessageContent(latitude, longitude, title, address, foursquare_id=None, foursquare_type=None, **kwargs)¶ Bases:
telegram.inline.inputmessagecontent.InputMessageContentRepresents the content of a venue message to be sent as the result of an inline query.
-
latitude¶ Latitude of the location in degrees.
Type: float
-
longitude¶ Longitude of the location in degrees.
Type: float
-
title¶ Name of the venue.
Type: str
-
address¶ Address of the venue.
Type: str
-
foursquare_id¶ Optional. Foursquare identifier of the venue, if known.
Type: str
-
foursquare_type¶ Optional. Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
Type: str
Parameters: - latitude (
float) – Latitude of the location in degrees. - longitude (
float) – Longitude of the location in degrees. - title (
str) – Name of the venue. - address (
str) – Address of the venue. - foursquare_id (
str, optional) – Foursquare identifier of the venue, if known. - foursquare_type (
str, optional) – Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) - **kwargs (
dict) – Arbitrary keyword arguments.
-