44 lines
672 B
Markdown
44 lines
672 B
Markdown
|
---
|
||
|
title: dialogPeer
|
||
|
description: dialogPeer attributes, type and example
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: dialogPeer
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|peer|[Peer](../types/Peer.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [DialogPeer](../types/DialogPeer.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$dialogPeer = ['_' => 'dialogPeer', 'peer' => Peer];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "dialogPeer", "peer": Peer}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
dialogPeer={_='dialogPeer', peer=Peer}
|
||
|
|
||
|
```
|
||
|
|
||
|
|