44 lines
674 B
Markdown
44 lines
674 B
Markdown
---
|
|
title: webPageEmpty
|
|
description: webPageEmpty attributes, type and example
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: webPageEmpty
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|id|[long](../types/long.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [WebPage](../types/WebPage.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$webPageEmpty = ['_' => 'webPageEmpty', 'id' => long];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "webPageEmpty", "id": long}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
webPageEmpty={_='webPageEmpty', id=long}
|
|
|
|
```
|
|
|
|
|