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