mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 23:19:38 +01:00
1.1 KiB
1.1 KiB
title | description |
---|---|
chat | chat attributes, type and example |
Constructor: chat
Attributes:
Name | Type | Required |
---|---|---|
id | int | Yes |
title | string | Yes |
photo | ChatPhoto | Yes |
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, }