mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 17:55:35 +01:00
31 lines
846 B
Markdown
31 lines
846 B
Markdown
---
|
|
title: "webViewResultUrl"
|
|
description: "Contains the webview URL with appropriate theme and user info parameters added"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: webViewResultUrl
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Contains the webview URL with appropriate theme and user info parameters added
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|query\_id|[long](/API_docs/types/long.html) | Yes|Webview session ID|
|
|
|url|[string](/API_docs/types/string.html) | Yes|Webview URL to open|
|
|
|
|
|
|
|
|
### Type: [WebViewResult](/API_docs/types/WebViewResult.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$webViewResultUrl = ['_' => 'webViewResultUrl', 'query_id' => long, 'url' => 'string'];
|
|
```
|