MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionC...

1.2 KiB

title description image
channelAdminLogEventActionChangeStickerSet channelAdminLogEventActionChangeStickerSet attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelAdminLogEventActionChangeStickerSet

Back to constructors index

Attributes:

Name Type Required
prev_stickerset InputStickerSet Optional
new_stickerset InputStickerSet Optional

Type: ChannelAdminLogEventAction

Example:

$channelAdminLogEventActionChangeStickerSet = ['_' => 'channelAdminLogEventActionChangeStickerSet', 'prev_stickerset' => InputStickerSet, 'new_stickerset' => InputStickerSet];

PWRTelegram json-encoded version:

{"_": "channelAdminLogEventActionChangeStickerSet", "prev_stickerset": InputStickerSet, "new_stickerset": InputStickerSet}

Or, if you're into Lua:

channelAdminLogEventActionChangeStickerSet={_='channelAdminLogEventActionChangeStickerSet', prev_stickerset=InputStickerSet, new_stickerset=InputStickerSet}