2017-03-31 17:35:20 +02:00
|
|
|
---
|
|
|
|
title: updateNewStickerSet
|
|
|
|
description: updateNewStickerSet attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: updateNewStickerSet
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|stickerset|[messages\_StickerSet](../types/messages_StickerSet.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$updateNewStickerSet = ['_' => 'updateNewStickerSet', 'stickerset' => messages_StickerSet, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"updateNewStickerSet","stickerset":"messages_StickerSet"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-31 17:35:20 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
updateNewStickerSet={_='updateNewStickerSet', stickerset=messages_StickerSet, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|