BotAppSettings
- class pyrogram.raw.base.BotAppSettings
Mini app » settings
- Constructors:
This base type has 1 constructor available.
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_path →
bytes (optional)├── background_color →
int (optional)├── background_dark_color →
int (optional)├── header_color →
int (optional)└── header_dark_color →
int (optional)Example
BotAppSettings(
placeholder_path=b"data",
background_color=0,
background_dark_color=0,
header_color=0,
header_dark_color=0,
)