2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: inputStickerSetThumb
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Location of stickerset thumbnail (see [files](https://core.telegram.org/api/files))
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputStickerSetThumb
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Location of stickerset thumbnail (see [files](https://core.telegram.org/api/files))
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|stickerset|[InputStickerSet](../types/InputStickerSet.md) | Optional|Sticker set|
|
2019-09-13 17:13:55 +02:00
|
|
|
|volume\_id|[long](../types/long.md) | Yes|Volume ID|
|
|
|
|
|local\_id|[int](../types/int.md) | Yes|Local ID|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputFileLocation](../types/InputFileLocation.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputStickerSetThumb = ['_' => 'inputStickerSetThumb', 'stickerset' => InputStickerSet, 'volume_id' => long, 'local_id' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputStickerSetThumb={_='inputStickerSetThumb', stickerset=InputStickerSet, volume_id=long, local_id=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|