MadelineProtoDocs/old_docs/API_docs_v66/constructors/contacts.blockedSlice.md

1.0 KiB

title description image redirect_from
contacts.blockedSlice Incomplete list of blocked users. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/contacts_blockedSlice.html

Constructor: contacts.blockedSlice

Back to constructors index

Incomplete list of blocked users.

Attributes:

Name Type Required Description
count int Yes Total number of elements in the list
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]];

Or, if you're into Lua:

contacts.blockedSlice={_='contacts.blockedSlice', count=int, blocked={ContactBlocked}, users={User}}