MadelineProto/old_docs/API_docs_v18/constructors/chat.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.1 KiB

title description
chat chat attributes, type and example

Constructor: chat

Back to constructors index

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}