MadelineProtoDocs/old_docs/API_docs_v81/constructors/contacts_blockedSlice.md

46 lines
1.0 KiB
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: contacts.blockedSlice
description: contacts_blockedSlice attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: contacts.blockedSlice
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|count|[int](../types/int.md) | Yes|
|blocked|Array of [ContactBlocked](../types/ContactBlocked.md) | Yes|
|users|Array of [User](../types/User.md) | Yes|
### Type: [contacts\_Blocked](../types/contacts_Blocked.md)
### Example:
```
$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked, ContactBlocked], 'users' => [User, User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "contacts.blockedSlice", "count": int, "blocked": [ContactBlocked], "users": [User]}
```
Or, if you're into Lua:
```
contacts_blockedSlice={_='contacts.blockedSlice', count=int, blocked={ContactBlocked}, users={User}}
```