MadelineProtoDocs/old_docs/API_docs_v32/constructors/inputMediaDocument.md

40 lines
873 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: inputMediaDocument
description: Forwarded document
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaDocument
[Back to constructors index](index.md)
Forwarded document
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Message, Update or InputDocument](../types/InputDocument.md) | Optional|The document to be forwarded.|
|ttl\_seconds|[int](../types/int.md) | Optional|Time to live of self-destructing document|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaDocument = ['_' => 'inputMediaDocument', 'id' => InputDocument, 'ttl_seconds' => int];
```
Or, if you're into Lua:
```lua
inputMediaDocument={_='inputMediaDocument', id=InputDocument, ttl_seconds=int}
```