2017-08-21 18:22:02 +02:00
|
|
|
---
|
|
|
|
title: inputStickerSetItem
|
|
|
|
description: inputStickerSetItem attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputStickerSetItem
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
2018-02-18 14:18:18 +01:00
|
|
|
|document|[InputDocument](../types/InputDocument.md) | Optional|
|
2017-08-21 18:22:02 +02:00
|
|
|
|emoji|[string](../types/string.md) | Yes|
|
|
|
|
|mask\_coords|[MaskCoords](../types/MaskCoords.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputStickerSetItem](../types/InputStickerSetItem.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$inputStickerSetItem = ['_' => 'inputStickerSetItem', 'document' => InputDocument, 'emoji' => 'string', 'mask_coords' => MaskCoords];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "inputStickerSetItem", "document": InputDocument, "emoji": "string", "mask_coords": MaskCoords}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
inputStickerSetItem={_='inputStickerSetItem', document=InputDocument, emoji='string', mask_coords=MaskCoords}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|