1.5 KiB
1.5 KiB
title | description |
---|---|
geoChat | geoChat attributes, type and example |
Constructor: geoChat
Attributes:
Name | Type | Required |
---|---|---|
id | int | Yes |
access_hash | long | Yes |
title | string | Yes |
address | string | Yes |
venue | string | Yes |
geo | GeoPoint | Yes |
photo | ChatPhoto | Yes |
participants_count | int | Yes |
date | int | Yes |
checked_in | Bool | Yes |
version | int | Yes |
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];
PWRTelegram json-encoded version:
{"_": "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}