967 B
967 B
title | description | image |
---|---|---|
updateChatParticipantDelete | A member has left the group. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateChatParticipantDelete
A member has left the group.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
chat_id | int | Yes | Group ID |
user_id | int | Yes | ID of the user |
version | int | Yes | Used in basic groups to reorder updates and make sure that all of them was received. |
Type: Update
Example:
$updateChatParticipantDelete = ['_' => '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}