MadelineProtoDocs/docs/API_docs/constructors/contacts_resolvedPeer.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

47 lines
1017 B
Markdown

---
title: contacts.resolvedPeer
description: Resolved peer
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: contacts.resolvedPeer
[Back to constructors index](index.md)
Resolved peer
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[Peer](../types/Peer.md) | Yes|Peer|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|users|Array of [User](../types/User.md) | Yes|Users|
### Type: [contacts\_ResolvedPeer](../types/contacts_ResolvedPeer.md)
### Example:
```php
$contacts_resolvedPeer = ['_' => 'contacts.resolvedPeer', 'peer' => Peer, 'chats' => [Chat, Chat], 'users' => [User, User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "contacts.resolvedPeer", "peer": Peer, "chats": [Chat], "users": [User]}
```
Or, if you're into Lua:
```lua
contacts_resolvedPeer={_='contacts.resolvedPeer', peer=Peer, chats={Chat}, users={User}}
```