MadelineProtoDocs/old_docs/API_docs_v105/constructors/updateUserBlocked.md

40 lines
730 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: updateUserBlocked
description: Update user blocked
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateUserBlocked
[Back to constructors index](index.md)
Update user blocked
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_id|[int](../types/int.md) | Yes|User ID|
|blocked|[Bool](../types/Bool.md) | Yes|Blocked?|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateUserBlocked = ['_' => 'updateUserBlocked', 'user_id' => int, 'blocked' => Bool];
```
Or, if you're into Lua:
```lua
updateUserBlocked={_='updateUserBlocked', user_id=int, blocked=Bool}
```