1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
inputMediaVenue | Media venue | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputMediaVenue
Media venue
Attributes:
Name | Type | Required | Description |
---|---|---|---|
geo_point | InputGeoPoint | Optional | Geo point |
title | string | Yes | Title |
address | string | Yes | Address |
provider | string | Yes | Provider |
venue_id | string | Yes | Venue ID |
Type: InputMedia
Example:
$inputMediaVenue = ['_' => 'inputMediaVenue', 'geo_point' => InputGeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string'];
PWRTelegram json-encoded version:
{"_": "inputMediaVenue", "geo_point": InputGeoPoint, "title": "string", "address": "string", "provider": "string", "venue_id": "string"}
Or, if you're into Lua:
inputMediaVenue={_='inputMediaVenue', geo_point=InputGeoPoint, title='string', address='string', provider='string', venue_id='string'}