MadelineProto/old_docs/API_docs_v42/constructors/notifyPeer.md

43 lines
602 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, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"notifyPeer","peer":"Peer"}
```
Or, if you're into Lua:
```
notifyPeer={_='notifyPeer', peer=Peer, }
```