MadelineProtoDocs/old_docs/API_docs_v38/constructors/chat.md
2018-04-04 19:52:48 +02:00

1.1 KiB

title description image
chat chat attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chat

Back to constructors index

Attributes:

Name Type Required
id int Yes
title string Yes
photo ChatPhoto Optional
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}