InlineQueryResultVenue

class telegram.InlineQueryResultVenue(id, latitude, longitude, title, address, foursquare_id=None, foursquare_type=None, reply_markup=None, input_message_content=None, google_place_id=None, google_place_type=None, thumbnail_url=None, thumbnail_width=None, thumbnail_height=None, *, api_kwargs=None)[source]

Bases: telegram.InlineQueryResult

Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the venue.

Note

Foursquare details and Google Pace details are mutually exclusive. However, this behaviour is undocumented and might be changed by Telegram.

Changed in version 20.5: Removed the deprecated arguments and attributes thumb_*.

Parameters:
type[source]

'venue'.

Type:

str

id[source]

Unique identifier for this result, 1- 64 Bytes.

Type:

str

latitude[source]

Latitude of the venue location in degrees.

Type:

float

longitude[source]

Longitude of the venue location in degrees.

Type:

float

title[source]

Title of the venue.

Type:

str

address[source]

Address of the venue.

Type:

str

foursquare_id[source]

Optional. Foursquare identifier of the venue if known.

Type:

str

foursquare_type[source]

Optional. Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)

Type:

str

google_place_id[source]

Optional. Google Places identifier of the venue.

Type:

str

google_place_type[source]

Optional. Google Places type of the venue. (See supported types.)

Type:

str

reply_markup[source]

Optional. Inline keyboard attached to the message.

Type:

telegram.InlineKeyboardMarkup

input_message_content[source]

Optional. Content of the message to be sent instead of the venue.

Type:

telegram.InputMessageContent

thumbnail_url[source]

Optional. Url of the thumbnail for the result.

New in version 20.2.

Type:

str

thumbnail_width[source]

Optional. Thumbnail width.

New in version 20.2.

Type:

int

thumbnail_height[source]

Optional. Thumbnail height.

New in version 20.2.

Type:

int