Layer 220
ContactsBlockedSlice
Incomplete list of blocked users.
constructor
contacts.blockedSlice#e1664194 count:int blocked:Vector<PeerBlocked> chats:Vector<Chat> users:Vector<User> = contacts.Blocked;
Parameters
| Name | Type | Description |
|---|---|---|
| Count | int | Total number of elements in the list |
| Blocked | Vector<PeerBlocked> | List of blocked users |
| Chats | Vector<Chat> | Blocked chats |
| Users | Vector<User> | List of users |
Returns
contacts.BlockedGogram Example
// Creating ContactsBlockedSlice constructor obj := &tg.ContactsBlockedSlice{ Count: 0, Blocked: []tg.PeerBlocked{&tg.PeerBlocked{}}, Chats: []tg.Chat{&tg.Chat{}}, Users: []tg.User{&tg.User{}}, }