InlineQueryResultVenue

class telegram.InlineQueryResultVenue(id, latitude, longitude, title, address, foursquare_id=None, foursquare_type=None, reply_markup=None, input_message_content=None, thumb_url=None, thumb_width=None, thumb_height=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.

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

property thumb_height[source]

Optional. Thumbnail height.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_height.

Type:

str

property thumb_url[source]

Optional. Url of the thumbnail for the result.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_url.

Type:

str

property thumb_width[source]

Optional. Thumbnail width.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_width.

Type:

str