ChannelAdminLogEventActionChangeWallpaper

class pyrogram.raw.types.ChannelAdminLogEventActionChangeWallpaper

The wallpaper was changed

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: 31BB5D52

Parameters:

TL Schema

channelAdminLogEventActionChangeWallpaper#31bb5d52
prev_value:WallPaper
new_value:WallPaper

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionChangeWallpaper
├── prev_value → WallPaper
│ ├── WallPaper
│ │ ├── id → long
│ │ ├── creator → true (optional)
│ │ ├── default → true (optional)
│ │ ├── pattern → true (optional)
│ │ ├── dark → true (optional)
│ │ ├── access_hash → long
│ │ ├── slug → string
│ │ ├── document → Document
│ │ │ ├── DocumentEmpty
│ │ │ │ └── id → long
│ │ │ └── Document
│ │ │ ├── id → long
│ │ │ ├── access_hash → long
│ │ │ ├── file_reference → bytes
│ │ │ ├── date → int
│ │ │ ├── mime_type → string
│ │ │ ├── size → long
│ │ │ ├── thumbs → Vector < PhotoSize > (optional)
│ │ │ │ ├── PhotoSizeEmpty
│ │ │ │ ├── PhotoSize
│ │ │ │ ├── PhotoCachedSize
│ │ │ │ ├── PhotoStrippedSize
│ │ │ │ ├── PhotoSizeProgressive
│ │ │ │ └── PhotoPathSize
│ │ │ ├── video_thumbs → Vector < VideoSize > (optional)
│ │ │ │ ├── VideoSize
│ │ │ │ ├── VideoSizeEmojiMarkup
│ │ │ │ └── VideoSizeStickerMarkup
│ │ │ ├── dc_id → int
│ │ │ └── attributes → Vector < DocumentAttribute >
│ │ │ ├── DocumentAttributeImageSize
│ │ │ ├── DocumentAttributeAnimated
│ │ │ ├── DocumentAttributeSticker
│ │ │ ├── DocumentAttributeVideo
│ │ │ ├── DocumentAttributeAudio
│ │ │ ├── DocumentAttributeFilename
│ │ │ ├── DocumentAttributeHasStickers
│ │ │ └── DocumentAttributeCustomEmoji
│ │ └── settings → WallPaperSettings (optional)
│ │ └── WallPaperSettings
│ │ ├── blur → true (optional)
│ │ ├── motion → true (optional)
│ │ ├── background_color → int (optional)
│ │ ├── second_background_color → int (optional)
│ │ ├── third_background_color → int (optional)
│ │ ├── fourth_background_color → int (optional)
│ │ ├── intensity → int (optional)
│ │ ├── rotation → int (optional)
│ │ └── emoticon → string (optional)
│ └── WallPaperNoFile
│ ├── id → long
│ ├── default → true (optional)
│ ├── dark → true (optional)
│ └── settings → WallPaperSettings (optional)
│ └── WallPaperSettings
│ ├── blur → true (optional)
│ ├── motion → true (optional)
│ ├── background_color → int (optional)
│ ├── second_background_color → int (optional)
│ ├── third_background_color → int (optional)
│ ├── fourth_background_color → int (optional)
│ ├── intensity → int (optional)
│ ├── rotation → int (optional)
│ └── emoticon → string (optional)
└── new_value → WallPaper
├── WallPaper
│ ├── id → long
│ ├── creator → true (optional)
│ ├── default → true (optional)
│ ├── pattern → true (optional)
│ ├── dark → true (optional)
│ ├── access_hash → long
│ ├── slug → string
│ ├── document → Document
│ │ ├── DocumentEmpty
│ │ │ └── id → long
│ │ └── Document
│ │ ├── id → long
│ │ ├── access_hash → long
│ │ ├── file_reference → bytes
│ │ ├── date → int
│ │ ├── mime_type → string
│ │ ├── size → long
│ │ ├── thumbs → Vector < PhotoSize > (optional)
│ │ │ ├── PhotoSizeEmpty
│ │ │ ├── PhotoSize
│ │ │ ├── PhotoCachedSize
│ │ │ ├── PhotoStrippedSize
│ │ │ ├── PhotoSizeProgressive
│ │ │ └── PhotoPathSize
│ │ ├── video_thumbs → Vector < VideoSize > (optional)
│ │ │ ├── VideoSize
│ │ │ ├── VideoSizeEmojiMarkup
│ │ │ └── VideoSizeStickerMarkup
│ │ ├── dc_id → int
│ │ └── attributes → Vector < DocumentAttribute >
│ │ ├── DocumentAttributeImageSize
│ │ ├── DocumentAttributeAnimated
│ │ ├── DocumentAttributeSticker
│ │ ├── DocumentAttributeVideo
│ │ ├── DocumentAttributeAudio
│ │ ├── DocumentAttributeFilename
│ └── settings → WallPaperSettings (optional)
│ └── WallPaperSettings
│ ├── blur → true (optional)
│ ├── motion → true (optional)
│ ├── background_color → int (optional)
│ ├── second_background_color → int (optional)
│ ├── third_background_color → int (optional)
│ ├── fourth_background_color → int (optional)
│ ├── intensity → int (optional)
│ ├── rotation → int (optional)
│ └── emoticon → string (optional)
└── WallPaperNoFile
├── id → long
├── default → true (optional)
├── dark → true (optional)
└── settings → WallPaperSettings (optional)
├── blur → true (optional)
├── motion → true (optional)
├── background_color → int (optional)
├── second_background_color → int (optional)
├── third_background_color → int (optional)
├── fourth_background_color → int (optional)
├── intensity → int (optional)
├── rotation → int (optional)
└── emoticon → string (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)
    ),
)