mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
31 lines
999 B
Markdown
31 lines
999 B
Markdown
---
|
|
title: "channelAdminLogEventActionChangeStickerSet"
|
|
description: "The supergroup's stickerset was changed"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: channelAdminLogEventActionChangeStickerSet
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
The supergroup's stickerset was changed
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|prev\_stickerset|[InputStickerSet](/API_docs/types/InputStickerSet.html) | Optional|Previous stickerset|
|
|
|new\_stickerset|[InputStickerSet](/API_docs/types/InputStickerSet.html) | Optional|New stickerset|
|
|
|
|
|
|
|
|
### Type: [ChannelAdminLogEventAction](/API_docs/types/ChannelAdminLogEventAction.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$channelAdminLogEventActionChangeStickerSet = ['_' => 'channelAdminLogEventActionChangeStickerSet', 'prev_stickerset' => InputStickerSet, 'new_stickerset' => InputStickerSet];
|
|
```
|