4baac3178e
Add PHP, Lua language tag to Code area
1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
chat | chat attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: chat
Attributes:
Name | Type | Required |
---|---|---|
id | int | Yes |
title | string | Yes |
photo | ChatPhoto | Optional |
participants_count | int | Yes |
date | int | Yes |
left | Bool | Yes |
version | int | Yes |
Type: Chat
Example:
$chat = ['_' => 'chat', 'id' => int, 'title' => 'string', 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'left' => Bool, 'version' => int];
PWRTelegram json-encoded version:
{"_": "chat", "id": int, "title": "string", "photo": ChatPhoto, "participants_count": int, "date": int, "left": Bool, "version": int}
Or, if you're into Lua:
chat={_='chat', id=int, title='string', photo=ChatPhoto, participants_count=int, date=int, left=Bool, version=int}