MadelineProtoDocs/docs/API_docs/constructors/contacts_resolvedPeer.md

871 B

title description image
contacts.resolvedPeer Resolved peer https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: contacts.resolvedPeer

Back to constructors index

Resolved peer

Attributes:

Name Type Required Description
peer Peer Yes The 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]];

Or, if you're into Lua:

contacts_resolvedPeer={_='contacts.resolvedPeer', peer=Peer, chats={Chat}, users={User}}