ChannelAdminLogEventActionChangeEmojiStickerSet

class pyrogram.raw.types.ChannelAdminLogEventActionChangeEmojiStickerSet

The supergroup’s custom emoji stickerset was changed.

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: 46D840AB

Parameters:

TL Schema

channelAdminLogEventActionChangeEmojiStickerSet#46d840ab
prev_stickerset:InputStickerSet
new_stickerset:InputStickerSet

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeEmojiStickerSet
├── prev_stickersetInputStickerSet
│ ├── InputStickerSetEmpty
│ ├── InputStickerSetID
│ │ ├── idlong
│ │ └── access_hashlong
│ │ └── short_namestring
│ ├── InputStickerSetDice
│ │ └── emoticonstring
└── new_stickersetInputStickerSet
│ ├── idlong
│ └── access_hashlong
│ └── short_namestring
│ └── emoticonstring

Example

ChannelAdminLogEventActionChangeEmojiStickerSet(
    prev_stickerset=InputStickerSetEmpty(),
    new_stickerset=InputStickerSetEmpty(),
)