MadelineProtoDocs/old_docs/API_docs_v18/constructors/chatFull.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.2 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
id int Yes ID
participants ChatParticipants Yes Participants
chat_photo Photo Optional Chat photo
notify_settings PeerNotifySettings Optional Notify settings

Type: ChatFull

Example:

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

PWRTelegram json-encoded version:

{"_": "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}