MadelineProto/docs/TD_docs/constructors/inputThumbLocal.md

47 lines
944 B
Markdown
Raw Normal View History

---
title: inputThumbLocal
description: Local file with the thumb
---
## Constructor: inputThumbLocal
[Back to constructors index](index.md)
Local file with the thumb
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|path|[string](../types/string.md) | Yes|Path to the file with the thumb|
|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:
```
2017-07-23 16:33:46 +02:00
$inputThumbLocal = ['_' => 'inputThumbLocal', 'path' => 'string', 'width' => int, 'height' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inputThumbLocal", "path": "string", "width": int, "height": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputThumbLocal={_='inputThumbLocal', path='string', width=int, height=int}
```