40 lines
1.0 KiB
Markdown
40 lines
1.0 KiB
Markdown
|
---
|
||
|
title: inputMediaUploadedThumbDocument
|
||
|
description: inputMediaUploadedThumbDocument attributes, type and example
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: inputMediaUploadedThumbDocument
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|file|[File path or InputFile](../types/InputFile.md) | Yes|
|
||
|
|thumb|[File path or InputFile](../types/InputFile.md) | Yes|
|
||
|
|file\_name|[string](../types/string.md) | Yes|
|
||
|
|mime\_type|[string](../types/string.md) | Optional|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMedia](../types/InputMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$inputMediaUploadedThumbDocument = ['_' => 'inputMediaUploadedThumbDocument', 'file' => InputFile, 'thumb' => InputFile, 'file_name' => 'string', 'mime_type' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
inputMediaUploadedThumbDocument={_='inputMediaUploadedThumbDocument', file=InputFile, thumb=InputFile, file_name='string', mime_type='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|