2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: contactBlocked
|
2019-12-27 17:48:04 +01:00
|
|
|
description: A blocked user.
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: contactBlocked
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
A blocked user.
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|user\_id|[int](../types/int.md) | Yes|User identifier|
|
|
|
|
|date|[int](../types/int.md) | Yes|Date blacklisted|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ContactBlocked](../types/ContactBlocked.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$contactBlocked = ['_' => 'contactBlocked', 'user_id' => int, 'date' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
contactBlocked={_='contactBlocked', user_id=int, date=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|