WallPaperSettings

class pyrogram.raw.base.WallPaperSettings

Wallpaper rendering information.

Constructors:

This base type has 1 constructor available.

WallPaperSettings

Wallpaper rendering information.

TL Schema

wallPaperSettings#372efcd0
flags:#
blur:flags.1?true
motion:flags.2?true
background_color:flags.0?int
second_background_color:flags.4?int
third_background_color:flags.5?int
fourth_background_color:flags.6?int
intensity:flags.3?int
rotation:flags.4?int
emoticon:flags.7?string

= WallPaperSettings

Parameter Tree

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)

Example

WallPaperSettings(
    blur=None,
    motion=None,
    background_color=0,
    second_background_color=0,
    third_background_color=0,
    fourth_background_color=0,
    intensity=0,
    rotation=0,
    emoticon="text",
)