MadelineProtoDocs/docs/API_docs/constructors/contacts_blockedSlice.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

title description image
contacts.blockedSlice Blocked slice https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: contacts.blockedSlice

Back to constructors index

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