1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
geochats.located | geochats_located attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: geochats.located
Attributes:
Name | Type | Required |
---|---|---|
results | Array of ChatLocated | Yes |
messages | Array of GeoChatMessage | Yes |
chats | Array of Chat | Yes |
users | Array of User | Yes |
Type: geochats_Located
Example:
$geochats_located = ['_' => 'geochats.located', 'results' => [ChatLocated, ChatLocated], 'messages' => [GeoChatMessage, GeoChatMessage], 'chats' => [Chat, Chat], 'users' => [User, User]];
PWRTelegram json-encoded version:
{"_": "geochats.located", "results": [ChatLocated], "messages": [GeoChatMessage], "chats": [Chat], "users": [User]}
Or, if you're into Lua:
geochats_located={_='geochats.located', results={ChatLocated}, messages={GeoChatMessage}, chats={Chat}, users={User}}