mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 11:47:49 +01:00
37 lines
618 B
Markdown
37 lines
618 B
Markdown
---
|
|
title: updateUserBlocked
|
|
description: updateUserBlocked attributes, type and example
|
|
---
|
|
## Constructor: updateUserBlocked
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|user\_id|[int](../types/int.md) | Yes|
|
|
|blocked|[Bool](../types/Bool.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$updateUserBlocked = ['_' => 'updateUserBlocked', 'user_id' => int, 'blocked' => Bool, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
updateUserBlocked={_='updateUserBlocked', user_id=int, blocked=Bool, }
|
|
|
|
```
|
|
|
|
|