KeyboardButtonStyle

class pyrogram.raw.base.KeyboardButtonStyle
Constructors:

This base type has 1 constructor available.

KeyboardButtonStyle

{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_primarytrue (optional)
├── bg_dangertrue (optional)
├── bg_successtrue (optional)
└── iconlong (optional)

Example

KeyboardButtonStyle(
    bg_primary=None,
    bg_danger=None,
    bg_success=None,
    icon=0,
)