MadelineProtoDocs/docs/API_docs/constructors/wallPaperSettings.md
2019-03-08 13:49:23 +01:00

1.0 KiB

title description image
wallPaperSettings wallPaperSettings attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: wallPaperSettings

Back to constructors index

Attributes:

Name Type Required
blur Bool Optional
motion Bool Optional
background_color int Optional
intensity int Optional

Type: WallPaperSettings

Example:

$wallPaperSettings = ['_' => 'wallPaperSettings', 'blur' => Bool, 'motion' => Bool, 'background_color' => int, 'intensity' => int];

PWRTelegram json-encoded version:

{"_": "wallPaperSettings", "blur": Bool, "motion": Bool, "background_color": int, "intensity": int}

Or, if you're into Lua:

wallPaperSettings={_='wallPaperSettings', blur=Bool, motion=Bool, background_color=int, intensity=int}