ChannelAdminLogEventActionChangeStickerSet

class pyrogram.raw.types.ChannelAdminLogEventActionChangeStickerSet

The supergroup’s stickerset was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: B1C3CAA7

Parameters:

TL Schema

channelAdminLogEventActionChangeStickerSet#b1c3caa7
prev_stickerset:InputStickerSet
new_stickerset:InputStickerSet

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeStickerSet
├── 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

ChannelAdminLogEventActionChangeStickerSet(
    prev_stickerset=InputStickerSetEmpty(),
    new_stickerset=InputStickerSetEmpty(),
)