34 lines
491 B
Markdown
34 lines
491 B
Markdown
|
---
|
||
|
title: inputPeerEmpty
|
||
|
description: An empty constructor, no user or chat is defined.
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: inputPeerEmpty
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
An empty constructor, no user or chat is defined.
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputPeer](../types/InputPeer.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$inputPeerEmpty = ['_' => 'inputPeerEmpty'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
inputPeerEmpty={_='inputPeerEmpty'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|