MadelineProtoDocs/docs/API_docs/constructors/inputFolderPeer.md

40 lines
778 B
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: inputFolderPeer
description: Folder peer
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputFolderPeer
[Back to constructors index](index.md)
Folder peer
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Optional|Peer|
|folder\_id|[int](../types/int.md) | Yes|Folder ID|
### Type: [InputFolderPeer](../types/InputFolderPeer.md)
### Example:
```php
$inputFolderPeer = ['_' => 'inputFolderPeer', 'peer' => InputPeer, 'folder_id' => int];
```
Or, if you're into Lua:
```lua
inputFolderPeer={_='inputFolderPeer', peer=InputPeer, folder_id=int}
```