mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:07:50 +01:00
1021 B
1021 B
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 |
version | int | Yes |
Type: Chat
Example:
$chat = ['_' => 'chat', 'id' => int, 'title' => string, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'version' => int, ];
PWRTelegram json-encoded version:
{"_":"chat","id":"int","title":"string","photo":"ChatPhoto","participants_count":"int","date":"int","version":"int"}
Or, if you're into Lua:
chat={_='chat', id=int, title=string, photo=ChatPhoto, participants_count=int, date=int, version=int, }