mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 14:07:22 +01:00
31 lines
910 B
Markdown
31 lines
910 B
Markdown
|
---
|
||
|
title: inputMediaUploadedThumbVideo
|
||
|
description: inputMediaUploadedThumbVideo attributes, type and example
|
||
|
---
|
||
|
## Constructor: inputMediaUploadedThumbVideo
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|file|[InputFile](../types/InputFile.md) | Required|
|
||
|
|thumb|[InputFile](../types/InputFile.md) | Required|
|
||
|
|duration|[int](../types/int.md) | Required|
|
||
|
|w|[int](../types/int.md) | Required|
|
||
|
|h|[int](../types/int.md) | Required|
|
||
|
|mime\_type|[string](../types/string.md) | Required|
|
||
|
|caption|[string](../types/string.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMedia](../types/InputMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$inputMediaUploadedThumbVideo = ['_' => 'inputMediaUploadedThumbVideo', 'file' => InputFile, 'thumb' => InputFile, 'duration' => int, 'w' => int, 'h' => int, 'mime_type' => string, 'caption' => string, ];
|
||
|
```
|