Interface ActionWebviewDataReceived

Data was received from a WebView (bot-side action)

interface ActionWebviewDataReceived {
    data: string;
    text: string;
    type: "webview_received";
}

Properties

Properties

data: string

Data received from the WebView

text: string

Text of the button that was pressed to open the WebView

type: "webview_received"