1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
chatFull | Chat full | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: chatFull
Chat full
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | ID |
participants | ChatParticipants | Yes | Participants |
chat_photo | Photo | Optional | Chat photo |
notify_settings | PeerNotifySettings | Optional | Notify settings |
exported_invite | ExportedChatInvite | Yes | Exported invite |
bot_info | Array of BotInfo | Yes | Bot info |
Type: ChatFull
Example:
$chatFull = ['_' => 'chatFull', 'id' => int, 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo, BotInfo]];
Or, if you're into Lua:
chatFull={_='chatFull', id=int, participants=ChatParticipants, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}}