ChannelAdminLogEventActionChangeAvailableReactions

class pyrogram.raw.types.ChannelAdminLogEventActionChangeAvailableReactions

The set of allowed message reactions » for this channel has changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: BE4E0EF8

Parameters:

TL Schema

channelAdminLogEventActionChangeAvailableReactions#be4e0ef8
prev_value:ChatReactions
new_value:ChatReactions

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeAvailableReactions
├── prev_valueChatReactions
│ ├── ChatReactionsNone
│ ├── ChatReactionsAll
│ │ └── allow_customtrue (optional)
│ └── ChatReactionsSome
│ └── reactionsVector < Reaction >
│ ├── ReactionEmpty
│ ├── ReactionEmoji
│ │ └── emoticonstring
│ ├── ReactionCustomEmoji
│ │ └── document_idlong
│ └── ReactionPaid
└── new_valueChatReactions
│ └── allow_customtrue (optional)
└── reactionsVector < Reaction >
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticonstring
│ └── document_idlong
└── ReactionPaid

Example

ChannelAdminLogEventActionChangeAvailableReactions(
    prev_value=ChatReactionsNone(),
    new_value=ChatReactionsNone(),
)