MadelineProtoDocs/old_docs/API_docs_v32/constructors/inputStickerSetThumb.md

41 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: inputStickerSetThumb
description: Location of stickerset thumbnail (see [files](https://core.telegram.org/api/files))
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputStickerSetThumb
[Back to constructors index](index.md)
Location of stickerset thumbnail (see [files](https://core.telegram.org/api/files))
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|stickerset|[InputStickerSet](../types/InputStickerSet.md) | Optional|Sticker set|
|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}
```