WebViewMessageSent

class pyrogram.raw.base.WebViewMessageSent

Contains information about an inline message sent by a Web App on behalf of a user.

Constructors:

This base type has 1 constructor available.

WebViewMessageSent

Info about a sent inline webview message

Functions:

This object can be returned by 1 function.

messages.SendWebViewResultMessage

Terminate webview interaction started with messages.requestWebView, sending the specified message to the chat on behalf of the user.

TL Schema

webViewMessageSent#c94511c
flags:#
msg_id:flags.0?InputBotInlineMessageID

= WebViewMessageSent

Parameter Tree

WebViewMessageSent
└── msg_id → InputBotInlineMessageID (optional)
│ ├── dc_id → int
│ ├── id → long
│ └── access_hash → long
├── dc_id → int
├── owner_id → long
├── id → int
└── access_hash → long

Example

WebViewMessageSent(
    msg_id=InputBotInlineMessageID(
        dc_id=0,
        id=0,
        access_hash=0
    ),
)