2017-04-21 13:27:04 +02:00
|
|
|
---
|
|
|
|
title: inputMediaUploadedThumbDocument
|
|
|
|
description: inputMediaUploadedThumbDocument attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputMediaUploadedThumbDocument
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|file|[InputFile](../types/InputFile.md) | Yes|
|
|
|
|
|thumb|[InputFile](../types/InputFile.md) | Yes|
|
|
|
|
|mime\_type|[string](../types/string.md) | Yes|
|
|
|
|
|attributes|Array of [DocumentAttribute](../types/DocumentAttribute.md) | Yes|
|
|
|
|
|caption|[string](../types/string.md) | Yes|
|
|
|
|
|stickers|Array of [InputDocument](../types/InputDocument.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputMedia](../types/InputMedia.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$inputMediaUploadedThumbDocument = ['_' => 'inputMediaUploadedThumbDocument', 'file' => InputFile, 'thumb' => InputFile, 'mime_type' => 'string', 'attributes' => [DocumentAttribute], 'caption' => 'string', 'stickers' => [InputDocument]];
|
2017-04-21 13:27:04 +02:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "inputMediaUploadedThumbDocument", "file": InputFile, "thumb": InputFile, "mime_type": "string", "attributes": [DocumentAttribute], "caption": "string", "stickers": [InputDocument]}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-04-21 13:27:04 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
inputMediaUploadedThumbDocument={_='inputMediaUploadedThumbDocument', file=InputFile, thumb=InputFile, mime_type='string', attributes={DocumentAttribute}, caption='string', stickers={InputDocument}}
|
2017-04-21 13:27:04 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|