2017-07-23 17:44:01 +02:00
|
|
|
---
|
|
|
|
title: webPagePending
|
|
|
|
description: webPagePending attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: webPagePending
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-07-23 17:44:01 +02:00
|
|
|
|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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|