4baac3178e
Add PHP, Lua language tag to Code area
822 B
822 B
title | description | image |
---|---|---|
updateUserBlocked | updateUserBlocked attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateUserBlocked
Attributes:
Name | Type | Required |
---|---|---|
user_id | int | Yes |
blocked | Bool | Yes |
Type: Update
Example:
$updateUserBlocked = ['_' => 'updateUserBlocked', 'user_id' => int, 'blocked' => Bool];
PWRTelegram json-encoded version:
{"_": "updateUserBlocked", "user_id": int, "blocked": Bool}
Or, if you're into Lua:
updateUserBlocked={_='updateUserBlocked', user_id=int, blocked=Bool}