51 lines
1.4 KiB
Markdown
51 lines
1.4 KiB
Markdown
|
---
|
||
|
title: botInlineMessageMediaVenue
|
||
|
description: Bot inline message media venue
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: botInlineMessageMediaVenue
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Bot inline message media venue
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|geo|[GeoPoint](../types/GeoPoint.md) | Optional|Geo|
|
||
|
|title|[string](../types/string.md) | Yes|Title|
|
||
|
|address|[string](../types/string.md) | Yes|Address|
|
||
|
|provider|[string](../types/string.md) | Yes|Provider|
|
||
|
|venue\_id|[string](../types/string.md) | Yes|Venue ID|
|
||
|
|venue\_type|[string](../types/string.md) | Yes|Venue type|
|
||
|
|reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional|Reply markup|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [BotInlineMessage](../types/BotInlineMessage.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$botInlineMessageMediaVenue = ['_' => 'botInlineMessageMediaVenue', 'geo' => GeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'venue_type' => 'string', 'reply_markup' => ReplyMarkup];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
botInlineMessageMediaVenue={_='botInlineMessageMediaVenue', geo=GeoPoint, 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.
|
||
|
|
||
|
|