1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
messageMediaVenue | messageMediaVenue attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messageMediaVenue
Attributes:
Name | Type | Required |
---|---|---|
geo | GeoPoint | Optional |
title | string | Yes |
address | string | Yes |
provider | string | Yes |
venue_id | string | Yes |
venue_type | string | Yes |
Type: MessageMedia
Example:
$messageMediaVenue = ['_' => 'messageMediaVenue', 'geo' => GeoPoint, 'title' => 'string', 'address' => 'string', 'provider' => 'string', 'venue_id' => 'string', 'venue_type' => 'string'];
PWRTelegram json-encoded version:
{"_": "messageMediaVenue", "geo": GeoPoint, "title": "string", "address": "string", "provider": "string", "venue_id": "string", "venue_type": "string"}
Or, if you're into Lua:
messageMediaVenue={_='messageMediaVenue', geo=GeoPoint, title='string', address='string', provider='string', venue_id='string', venue_type='string'}