39 lines
592 B
Markdown
39 lines
592 B
Markdown
---
|
|
title: webPageEmpty
|
|
description: Empty web page
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: webPageEmpty
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Empty web page
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|id|[long](../types/long.md) | Yes|ID|
|
|
|
|
|
|
|
|
### Type: [WebPage](../types/WebPage.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$webPageEmpty = ['_' => 'webPageEmpty', 'id' => long];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
webPageEmpty={_='webPageEmpty', id=long}
|
|
|
|
```
|
|
|
|
|