43 lines
599 B
Markdown
43 lines
599 B
Markdown
---
|
|
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}
|
|
|
|
```
|
|
|
|
|