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, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|