MadelineProtoDocs/docs/API_docs/constructors/inputFolderPeer.md

40 lines
873 B
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: inputFolderPeer
2019-12-27 17:48:04 +01:00
description: Peer in a folder
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputFolderPeer
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Peer in a folder
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[Username, chat ID, Update, Message or InputPeer](../types/InputPeer.md) | Optional|Peer|
2020-06-16 17:50:25 +02:00
|folder\_id|[int](../types/int.md) | Yes|[Peer folder ID, for more info click here](https://core.telegram.org/api/folders#peer-folders)|
2019-06-23 13:07:51 +02:00
### 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}
```