MadelineProto/old_docs/API_docs_v25/constructors/chat.md

897 B

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, ];

Or, if you're into Lua:

chat={_='chat', id=int, title=string, photo=ChatPhoto, participants_count=int, date=int, left=Bool, version=int, }