2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: inputStickerSetShortName
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Stickerset by short name, from `tg://addstickers?set=short_name`
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputStickerSetShortName
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Stickerset by short name, from `tg://addstickers?set=short_name`
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|short\_name|[string](../types/string.md) | Yes|From `tg://addstickers?set=short_name`|
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputStickerSet](../types/InputStickerSet.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputStickerSetShortName = ['_' => 'inputStickerSetShortName', 'short_name' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputStickerSetShortName={_='inputStickerSetShortName', short_name='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|