2018-12-26 02:56:50 +01:00
|
|
|
---
|
|
|
|
title: inputStickerSetItem
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Sticker in a stickerset
|
2018-12-26 02:56:50 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputStickerSetItem
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Sticker in a stickerset
|
2018-12-26 02:56:50 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|document|[MessageMedia, Message, Update or InputDocument](../types/InputDocument.md) | Optional|The sticker|
|
|
|
|
|emoji|[string](../types/string.md) | Yes|Associated emoji|
|
|
|
|
|mask\_coords|[MaskCoords](../types/MaskCoords.md) | Optional|Coordinates for mask sticker|
|
2018-12-26 02:56:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputStickerSetItem](../types/InputStickerSetItem.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputStickerSetItem = ['_' => 'inputStickerSetItem', 'document' => InputDocument, 'emoji' => 'string', 'mask_coords' => MaskCoords];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputStickerSetItem={_='inputStickerSetItem', document=InputDocument, emoji='string', mask_coords=MaskCoords}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|