MadelineProtoDocs/old_docs/API_docs_v18/constructors/inputMediaUploadedDocument.md

43 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:24:46 +02:00
---
title: inputMediaUploadedDocument
2019-12-27 17:48:04 +01:00
description: New document
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:24:46 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: inputMediaUploadedDocument
2018-04-01 13:24:46 +02:00
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
New document
2018-12-26 02:56:50 +01:00
2018-04-01 13:24:46 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|file|[File path or InputFile](../types/InputFile.md) | Yes|The [uploaded file](https://core.telegram.org/api/files)|
|mime\_type|[string](../types/string.md) | Optional|MIME type of document|
2020-06-16 17:50:25 +02:00
|attributes|Array of [DocumentAttribute](../types/DocumentAttribute.md) | Yes|Attributes that specify the type of the document (video, audio, voice, sticker, etc.)|
|caption|[string](../types/string.md) | Yes|
|stickers|Array of [MessageMedia, Message, Update or InputDocument](../types/InputDocument.md) | Optional|Attached stickers|
2018-04-01 13:24:46 +02:00
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
2020-06-16 17:50:25 +02:00
$inputMediaUploadedDocument = ['_' => 'inputMediaUploadedDocument', 'file' => InputFile, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute], 'caption' => 'string', 'stickers' => [InputDocument, InputDocument]];
2018-04-01 13:24:46 +02:00
```
Or, if you're into Lua:
2018-04-01 13:24:46 +02:00
```lua
2020-06-16 17:50:25 +02:00
inputMediaUploadedDocument={_='inputMediaUploadedDocument', file=InputFile, mime_type='string', attributes={DocumentAttribute}, caption='string', stickers={InputDocument}}
2018-04-01 13:24:46 +02:00
```