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

895 B

title description image
updateChatParticipants Update chat participants https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChatParticipants

Back to constructors index

Update chat participants

Attributes:

Name Type Required Description
participants ChatParticipants Yes Participants

Type: Update

Example:

$updateChatParticipants = ['_' => 'updateChatParticipants', 'participants' => ChatParticipants];

PWRTelegram json-encoded version:

{"_": "updateChatParticipants", "participants": ChatParticipants}

Or, if you're into Lua:

updateChatParticipants={_='updateChatParticipants', participants=ChatParticipants}