1017 B
1017 B
title | description | image |
---|---|---|
contacts.resolvedPeer | Resolved peer | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: contacts.resolvedPeer
Resolved peer
Attributes:
Name | Type | Required | Description |
---|---|---|---|
peer | Peer | Yes | Peer |
chats | Array of Chat | Yes | Chats |
users | Array of User | Yes | Users |
Type: contacts_ResolvedPeer
Example:
$contacts_resolvedPeer = ['_' => 'contacts.resolvedPeer', 'peer' => Peer, 'chats' => [Chat, Chat], 'users' => [User, User]];
PWRTelegram json-encoded version:
{"_": "contacts.resolvedPeer", "peer": Peer, "chats": [Chat], "users": [User]}
Or, if you're into Lua:
contacts_resolvedPeer={_='contacts.resolvedPeer', peer=Peer, chats={Chat}, users={User}}