1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
contacts.blockedSlice | Blocked slice | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: contacts.blockedSlice
Blocked slice
Attributes:
Name | Type | Required | Description |
---|---|---|---|
count | int | Yes | Count |
blocked | Array of ContactBlocked | Yes | Blocked |
users | Array of User | Yes | Users |
Type: contacts_Blocked
Example:
$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked, ContactBlocked], 'users' => [User, User]];
PWRTelegram 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}}