2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: contacts.blockedSlice
|
|
|
|
description: contacts_blockedSlice attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: contacts.blockedSlice
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|count|[int](../types/int.md) | Yes|
|
|
|
|
|blocked|Array of [ContactBlocked](../types/ContactBlocked.md) | Yes|
|
|
|
|
|users|Array of [User](../types/User.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [contacts\_Blocked](../types/contacts_Blocked.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked], 'users' => [User], ];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
contacts_blockedSlice={_='contacts.blockedSlice', count=int, blocked={ContactBlocked}, users={User}, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|