mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 07:34:41 +01:00
749 B
749 B
title | description |
---|---|
messageActionChatDeleteUser | messageActionChatDeleteUser attributes, type and example |
Constructor: messageActionChatDeleteUser
Attributes:
Name | Type | Required |
---|---|---|
user_id | int | Yes |
Type: MessageAction
Example:
$messageActionChatDeleteUser = ['_' => 'messageActionChatDeleteUser', 'user_id' => int];
PWRTelegram json-encoded version:
{"_": "messageActionChatDeleteUser", "user_id": int}
Or, if you're into Lua:
messageActionChatDeleteUser={_='messageActionChatDeleteUser', user_id=int}