ChannelAdminLogEventActionChangeWallpaper

class pyrogram.raw.types.ChannelAdminLogEventActionChangeWallpaper

The wallpaper was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: 31BB5D52

Parameters:

TL Schema

channelAdminLogEventActionChangeWallpaper#31bb5d52
prev_value:WallPaper
new_value:WallPaper

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeWallpaper
├── prev_valueWallPaper
│ ├── WallPaper
│ │ ├── idlong
│ │ ├── creatortrue (optional)
│ │ ├── defaulttrue (optional)
│ │ ├── patterntrue (optional)
│ │ ├── darktrue (optional)
│ │ ├── access_hashlong
│ │ ├── slugstring
│ │ ├── documentDocument
│ │ │ ├── DocumentEmpty
│ │ │ │ └── idlong
│ │ │ └── Document
│ │ │ ├── idlong
│ │ │ ├── access_hashlong
│ │ │ ├── file_referencebytes
│ │ │ ├── dateint
│ │ │ ├── mime_typestring
│ │ │ ├── sizelong
│ │ │ ├── thumbsVector < PhotoSize > (optional)
│ │ │ │ ├── PhotoSizeEmpty
│ │ │ │ ├── PhotoSize
│ │ │ │ ├── PhotoCachedSize
│ │ │ │ ├── PhotoStrippedSize
│ │ │ │ ├── PhotoSizeProgressive
│ │ │ │ └── PhotoPathSize
│ │ │ ├── video_thumbsVector < VideoSize > (optional)
│ │ │ │ ├── VideoSize
│ │ │ │ ├── VideoSizeEmojiMarkup
│ │ │ │ └── VideoSizeStickerMarkup
│ │ │ ├── dc_idint
│ │ │ └── attributesVector < DocumentAttribute >
│ │ │ ├── DocumentAttributeImageSize
│ │ │ ├── DocumentAttributeAnimated
│ │ │ ├── DocumentAttributeSticker
│ │ │ ├── DocumentAttributeVideo
│ │ │ ├── DocumentAttributeAudio
│ │ │ ├── DocumentAttributeFilename
│ │ │ ├── DocumentAttributeHasStickers
│ │ │ └── DocumentAttributeCustomEmoji
│ │ └── settingsWallPaperSettings (optional)
│ │ └── WallPaperSettings
│ │ ├── blurtrue (optional)
│ │ ├── motiontrue (optional)
│ │ ├── background_colorint (optional)
│ │ ├── second_background_colorint (optional)
│ │ ├── third_background_colorint (optional)
│ │ ├── fourth_background_colorint (optional)
│ │ ├── intensityint (optional)
│ │ ├── rotationint (optional)
│ │ └── emoticonstring (optional)
│ └── WallPaperNoFile
│ ├── idlong
│ ├── defaulttrue (optional)
│ ├── darktrue (optional)
│ └── settingsWallPaperSettings (optional)
│ └── WallPaperSettings
│ ├── blurtrue (optional)
│ ├── motiontrue (optional)
│ ├── background_colorint (optional)
│ ├── second_background_colorint (optional)
│ ├── third_background_colorint (optional)
│ ├── fourth_background_colorint (optional)
│ ├── intensityint (optional)
│ ├── rotationint (optional)
│ └── emoticonstring (optional)
└── new_valueWallPaper
├── WallPaper
│ ├── idlong
│ ├── creatortrue (optional)
│ ├── defaulttrue (optional)
│ ├── patterntrue (optional)
│ ├── darktrue (optional)
│ ├── access_hashlong
│ ├── slugstring
│ ├── documentDocument
│ │ ├── DocumentEmpty
│ │ │ └── idlong
│ │ └── Document
│ │ ├── idlong
│ │ ├── access_hashlong
│ │ ├── file_referencebytes
│ │ ├── dateint
│ │ ├── mime_typestring
│ │ ├── sizelong
│ │ ├── thumbsVector < PhotoSize > (optional)
│ │ │ ├── PhotoSizeEmpty
│ │ │ ├── PhotoSize
│ │ │ ├── PhotoCachedSize
│ │ │ ├── PhotoStrippedSize
│ │ │ ├── PhotoSizeProgressive
│ │ │ └── PhotoPathSize
│ │ ├── video_thumbsVector < VideoSize > (optional)
│ │ │ ├── VideoSize
│ │ │ ├── VideoSizeEmojiMarkup
│ │ │ └── VideoSizeStickerMarkup
│ │ ├── dc_idint
│ │ └── attributesVector < DocumentAttribute >
│ │ ├── DocumentAttributeImageSize
│ │ ├── DocumentAttributeAnimated
│ │ ├── DocumentAttributeSticker
│ │ ├── DocumentAttributeVideo
│ │ ├── DocumentAttributeAudio
│ │ ├── DocumentAttributeFilename
│ └── settingsWallPaperSettings (optional)
│ └── WallPaperSettings
│ ├── blurtrue (optional)
│ ├── motiontrue (optional)
│ ├── background_colorint (optional)
│ ├── second_background_colorint (optional)
│ ├── third_background_colorint (optional)
│ ├── fourth_background_colorint (optional)
│ ├── intensityint (optional)
│ ├── rotationint (optional)
│ └── emoticonstring (optional)
└── WallPaperNoFile
├── idlong
├── defaulttrue (optional)
├── darktrue (optional)
└── settingsWallPaperSettings (optional)
├── blurtrue (optional)
├── motiontrue (optional)
├── background_colorint (optional)
├── second_background_colorint (optional)
├── third_background_colorint (optional)
├── fourth_background_colorint (optional)
├── intensityint (optional)
├── rotationint (optional)
└── emoticonstring (optional)

Example

ChannelAdminLogEventActionChangeWallpaper(
    prev_value=WallPaper(
        id=0,
        access_hash=0,
        slug="text",
        document=DocumentEmpty(id=0)
    ),
    new_value=WallPaper(
        id=0,
        access_hash=0,
        slug="text",
        document=DocumentEmpty(id=0)
    ),
)