KeyboardButtonStyle
- class pyrogram.raw.base.KeyboardButtonStyle
- Constructors:
This base type has 1 constructor available.
{schema}
TL Schema
keyboardButtonStyle#4fdd3430
flags:#
bg_primary:flags.0?true
bg_danger:flags.1?true
bg_success:flags.2?true
icon:flags.3?long
= KeyboardButtonStyle
Parameter Tree
KeyboardButtonStyle
├── bg_primary →
true (optional)├── bg_danger →
true (optional)├── bg_success →
true (optional)└── icon →
long (optional)Example
KeyboardButtonStyle(
bg_primary=None,
bg_danger=None,
bg_success=None,
icon=0,
)