1.7 KiB
1.7 KiB
title | description |
---|---|
chat | chat attributes, type and example |
Constructor: chat
Attributes:
Name | Type | Required |
---|---|---|
creator | Bool | Optional |
kicked | Bool | Optional |
left | Bool | Optional |
admins_enabled | Bool | Optional |
admin | Bool | Optional |
deactivated | Bool | Optional |
id | int | Yes |
title | string | Yes |
photo | ChatPhoto | Yes |
participants_count | int | Yes |
date | int | Yes |
version | int | Yes |
migrated_to | InputChannel | Optional |
Type: Chat
Example:
$chat = ['_' => 'chat', 'creator' => Bool, 'kicked' => Bool, 'left' => Bool, 'admins_enabled' => Bool, 'admin' => Bool, 'deactivated' => Bool, 'id' => int, 'title' => 'string', 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'version' => int, 'migrated_to' => InputChannel];
PWRTelegram json-encoded version:
{"_": "chat", "creator": Bool, "kicked": Bool, "left": Bool, "admins_enabled": Bool, "admin": Bool, "deactivated": Bool, "id": int, "title": "string", "photo": ChatPhoto, "participants_count": int, "date": int, "version": int, "migrated_to": InputChannel}
Or, if you're into Lua:
chat={_='chat', creator=Bool, kicked=Bool, left=Bool, admins_enabled=Bool, admin=Bool, deactivated=Bool, id=int, title='string', photo=ChatPhoto, participants_count=int, date=int, version=int, migrated_to=InputChannel}