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

45 lines
845 B
Markdown

---
title: inputNotifyGeoChatPeer
description: Notify geo chat peer
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputNotifyGeoChatPeer
[Back to constructors index](index.md)
Notify geo chat peer
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[InputGeoChat](../types/InputGeoChat.md) | Yes|Peer|
### Type: [InputNotifyPeer](../types/InputNotifyPeer.md)
### Example:
```php
$inputNotifyGeoChatPeer = ['_' => 'inputNotifyGeoChatPeer', 'peer' => InputGeoChat];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputNotifyGeoChatPeer", "peer": InputGeoChat}
```
Or, if you're into Lua:
```lua
inputNotifyGeoChatPeer={_='inputNotifyGeoChatPeer', peer=InputGeoChat}
```