MadelineProto/old_docs/API_docs_v27/constructors/webPagePending.md

44 lines
691 B
Markdown
Raw Normal View History

---
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:
```
2017-07-23 16:33:46 +02:00
$webPagePending = ['_' => 'webPagePending', 'id' => long, 'date' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "webPagePending", "id": long, "date": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
webPagePending={_='webPagePending', id=long, date=int}
```