mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.4 KiB
1.4 KiB
title | description | nav_exclude | image |
---|---|---|---|
botInlineMessageMediaVenue | Send a venue | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: botInlineMessageMediaVenue
Send a venue
Attributes:
Name | Type | Required | Description |
---|---|---|---|
geo | GeoPoint | Optional | Geolocation of venue |
title | string | Yes | Venue name |
address | string | Yes | Address |
provider | string | Yes | Venue provider: currently only "foursquare" and "gplaces" (Google Places) need 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: BotInlineMessage
Usage of reply_markup
You can provide bot API reply_markup objects here.
Example:
$botInlineMessageMediaVenue = ['_' => 'botInlineMessageMediaVenue', 'geo' => GeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'venue_type' => 'string', 'reply_markup' => ReplyMarkup];