MadelineProto/old_docs/API_docs_v23/constructors/contacts_blockedSlice.md
2017-07-23 16:11:02 +02:00

956 B

title description
contacts.blockedSlice contacts_blockedSlice attributes, type and example

Constructor: contacts.blockedSlice

Back to constructors index

Attributes:

Name Type Required
count int Yes
blocked Array of ContactBlocked Yes
users Array of User Yes

Type: contacts_Blocked

Example:

$contacts_blockedSlice = ['_' => 'contacts.blockedSlice', 'count' => int, 'blocked' => [ContactBlocked], 'users' => [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}, }