InlineBotWebView

class pyrogram.raw.types.InlineBotWebView

Specifies an inline mode mini app button, shown on top of the inline query results list.

Constructor of InlineBotWebView.

Details:
  • Layer: 223

  • ID: B57295D5

Parameters:
  • text (str) – Text of the button

  • url (str) – Webapp URL

TL Schema

inlineBotWebView#b57295d5
text:string
url:string

= InlineBotWebView

Parameter Tree

InlineBotWebView
├── textstring
└── urlstring

Example

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