mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:47:46 +01:00
956 B
956 B
title | description |
---|---|
contacts.blockedSlice | contacts_blockedSlice attributes, type and example |
Constructor: contacts.blockedSlice
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}, }