MadelineProtoDocs/old_docs/API_docs_v3/constructors/chatFull.md

1.0 KiB

title description image
chatFull Detailed chat info https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatFull

Back to constructors index

Detailed chat info

Attributes:

Name Type Required Description
id int Yes ID of the chat
participants ChatParticipants Yes Participant list
chat_photo Photo Optional Chat photo
notify_settings PeerNotifySettings Optional Notification settings

Type: ChatFull

Example:

$chatFull = ['_' => 'chatFull', 'id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings];

Or, if you're into Lua:

chatFull={_='chatFull', id=int, participants=ChatParticipants, chat_photo=Photo, notify_settings=PeerNotifySettings}