BotAppSettings

class pyrogram.raw.base.BotAppSettings

Mini app » settings

Constructors:

This base type has 1 constructor available.

BotAppSettings

Mini app » settings

TL Schema

botAppSettings#c99b1950
flags:#
placeholder_path:flags.0?bytes
background_color:flags.1?int
background_dark_color:flags.2?int
header_color:flags.3?int
header_dark_color:flags.4?int

= BotAppSettings

Parameter Tree

BotAppSettings
├── placeholder_pathbytes (optional)
├── background_colorint (optional)
├── background_dark_colorint (optional)
├── header_colorint (optional)
└── header_dark_colorint (optional)

Example

BotAppSettings(
    placeholder_path=b"data",
    background_color=0,
    background_dark_color=0,
    header_color=0,
    header_dark_color=0,
)