1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
geoChat | Geo chat | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: geoChat
Geo chat
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | ID |
access_hash | long | Yes | Access hash |
title | string | Yes | Title |
address | string | Yes | Address |
venue | string | Yes | Venue |
geo | GeoPoint | Optional | Geo |
photo | ChatPhoto | Optional | Photo |
participants_count | int | Yes | Participants count |
date | int | Yes | Date |
checked_in | Bool | Yes | Checked in? |
version | int | Yes | Version |
Type: Chat
Example:
$geoChat = ['_' => 'geoChat', 'id' => int, 'access_hash' => long, 'title' => 'string', 'address' => 'string', 'venue' => 'string', 'geo' => GeoPoint, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'checked_in' => Bool, 'version' => int];
Or, if you're into Lua:
geoChat={_='geoChat', id=int, access_hash=long, title='string', address='string', venue='string', geo=GeoPoint, photo=ChatPhoto, participants_count=int, date=int, checked_in=Bool, version=int}