1.6 KiB
1.6 KiB
title | description | image |
---|---|---|
inputBotInlineMessageMediaVenue | Venue | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputBotInlineMessageMediaVenue
Venue
Attributes:
Name | Type | Required | Description |
---|---|---|---|
geo_point | InputGeoPoint | Optional | Geolocation |
title | string | Yes | Venue name |
address | string | Yes | Address |
provider | string | Yes | Venue provider: currently only "foursquare" needs to be supported |
venue_id | string | Yes | Venue ID in the provider's database |
venue_type | string | Yes | Venue type in the provider's database |
reply_markup | ReplyMarkup | Optional | Inline keyboard |
Type: InputBotInlineMessage
Example:
$inputBotInlineMessageMediaVenue = ['_' => 'inputBotInlineMessageMediaVenue', 'geo_point' => InputGeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'venue_type' => 'string', 'reply_markup' => ReplyMarkup];
Or, if you're into Lua:
inputBotInlineMessageMediaVenue={_='inputBotInlineMessageMediaVenue', geo_point=InputGeoPoint, title='string', address='string', provider='string', venue_id='string', venue_type='string', reply_markup=ReplyMarkup}
Usage of reply_markup
You can provide bot API reply_markup objects here.