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

1.0 KiB

title description image
updateChatParticipantDelete Update chat participant delete https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChatParticipantDelete

Back to constructors index

Update chat participant delete

Attributes:

Name Type Required Description
chat_id int Yes Chat ID
user_id int Yes User ID
version int Yes Version

Type: Update

Example:

$updateChatParticipantDelete = ['_' => 'updateChatParticipantDelete', 'chat_id' => int, 'user_id' => int, 'version' => int];

PWRTelegram json-encoded version:

{"_": "updateChatParticipantDelete", "chat_id": int, "user_id": int, "version": int}

Or, if you're into Lua:

updateChatParticipantDelete={_='updateChatParticipantDelete', chat_id=int, user_id=int, version=int}