MadelineProtoDocs/docs/API_docs/constructors/chatFull.md

1.4 KiB

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

Constructor: chatFull

Back to constructors index

Attributes:

Name Type Required
id int Yes
participants ChatParticipants Yes
chat_photo Photo Optional
notify_settings PeerNotifySettings Optional
exported_invite ExportedChatInvite Yes
bot_info Array of BotInfo Yes

Type: ChatFull

Example:

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

PWRTelegram json-encoded version:

{"_": "chatFull", "id": int, "participants": ChatParticipants, "chat_photo": Photo, "notify_settings": PeerNotifySettings, "exported_invite": ExportedChatInvite, "bot_info": [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}}