KeyboardButtonUrl

class pyrogram.raw.types.KeyboardButtonUrl

URL button

Constructor of KeyboardButton.

Details:
  • Layer: 223

  • ID: D80C25EC

Parameters:

TL Schema

keyboardButtonUrl#d80c25ec
flags:#
style:flags.10?KeyboardButtonStyle
text:string
url:string

= KeyboardButton

Parameter Tree

KeyboardButtonUrl
├── styleKeyboardButtonStyle (optional)
│ └── KeyboardButtonStyle
│ ├── bg_primarytrue (optional)
│ ├── bg_dangertrue (optional)
│ ├── bg_successtrue (optional)
│ └── iconlong (optional)
├── textstring
└── urlstring

Example

KeyboardButtonUrl(
    text="Open",
    url="https://google.com",
)