MadelineProto/old_docs/API_docs_v40/constructors/chat.md
2017-07-23 16:11:02 +02: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, }