MadelineProto/old_docs/API_docs_v70/constructors/notifyPeer.md

43 lines
599 B
Markdown
Raw Normal View History

---
title: notifyPeer
description: notifyPeer attributes, type and example
---
## Constructor: notifyPeer
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|peer|[Peer](../types/Peer.md) | Yes|
### Type: [NotifyPeer](../types/NotifyPeer.md)
### Example:
```
$notifyPeer = ['_' => 'notifyPeer', 'peer' => Peer];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "notifyPeer", "peer": Peer}
```
Or, if you're into Lua:
```
notifyPeer={_='notifyPeer', peer=Peer}
```