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