MadelineProtoDocs/docs/API_docs/constructors/chatFull.md

1.8 KiB

title description image
chatFull Chat full https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatFull

Back to constructors index

Chat full

Attributes:

Name Type Required Description
can_set_username Bool Optional Can set username?
has_scheduled Bool Optional Has scheduled messages?
id int Yes ID
about string Yes Chat about
participants ChatParticipants Yes Participants
chat_photo Photo Optional Chat photo
notify_settings PeerNotifySettings Yes Notify settings
exported_invite ExportedChatInvite Yes Exported invite
bot_info Array of BotInfo Optional Bot info
pinned_msg_id int Optional Pinned msg ID
folder_id int Optional Folder ID

Type: ChatFull

Example:

$chatFull = ['_' => 'chatFull', 'can_set_username' => Bool, 'has_scheduled' => Bool, 'id' => int, 'about' => 'string', 'participants' => ChatParticipants, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo, BotInfo], 'pinned_msg_id' => int, 'folder_id' => int];

Or, if you're into Lua:

chatFull={_='chatFull', can_set_username=Bool, has_scheduled=Bool, id=int, about='string', participants=ChatParticipants, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite, bot_info={BotInfo}, pinned_msg_id=int, folder_id=int}