ChannelAdminLogEventActionChangeUsernames

class pyrogram.raw.types.ChannelAdminLogEventActionChangeUsernames

The list of usernames associated with the channel was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: F04FB3A9

Parameters:
  • prev_value (List of str) – Previous set of usernames

  • new_value (List of str) – New set of usernames

TL Schema

channelAdminLogEventActionChangeUsernames#f04fb3a9
prev_value:Vector<string>
new_value:Vector<string>

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeUsernames
├── prev_valueVector < string >
└── new_valueVector < string >

Example

ChannelAdminLogEventActionChangeUsernames(
    prev_value=["text"],
    new_value=["text"],
)