ChannelAdminLogEventActionChangeEmojiStickerSet

class pyrogram.raw.types.ChannelAdminLogEventActionChangeEmojiStickerSet

The supergroup’s custom emoji stickerset was changed.

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: 46D840AB

Parameters:

TL Schema

channelAdminLogEventActionChangeEmojiStickerSet#46d840ab
prev_stickerset:InputStickerSet
new_stickerset:InputStickerSet

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeEmojiStickerSet
├── prev_stickerset → InputStickerSet
│ ├── InputStickerSetEmpty
│ ├── InputStickerSetID
│ │ ├── id → long
│ │ └── access_hash → long
│ │ └── short_name → string
│ ├── InputStickerSetDice
│ │ └── emoticon → string
└── new_stickerset → InputStickerSet
│ ├── id → long
│ └── access_hash → long
│ └── short_name → string
│ └── emoticon → string

Example

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