1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 21:16:55 +01:00
MadelineProto/docs/TD_docs/constructors/inputThumbGenerated.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

48 lines
1.2 KiB
Markdown

---
title: inputThumbGenerated
description: Generated thumb
---
## Constructor: inputThumbGenerated
[Back to constructors index](index.md)
Generated thumb
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|original\_path|[string](../types/string.md) | Yes|Path to the original file|
|conversion|[string](../types/string.md) | Yes|String specifying conversion applied to the original file, should be persistent across application restart|
|width|[int](../types/int.md) | Yes|Thumb width, use 0 if unknown|
|height|[int](../types/int.md) | Yes|Thumb height, use 0 if unknown|
### Type: [InputThumb](../types/InputThumb.md)
### Example:
```
$inputThumbGenerated = ['_' => 'inputThumbGenerated', 'original_path' => 'string', 'conversion' => 'string', 'width' => int, 'height' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputThumbGenerated", "original_path": "string", "conversion": "string", "width": int, "height": int}
```
Or, if you're into Lua:
```
inputThumbGenerated={_='inputThumbGenerated', original_path='string', conversion='string', width=int, height=int}
```