MadelineProtoDocs/old_docs/API_docs_v100/constructors/webPagePending.md

40 lines
786 B
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: webPagePending
2019-12-27 17:48:04 +01:00
description: A preview of the webpage is currently being generated
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: webPagePending
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
A preview of the webpage is currently being generated
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|id|[long](../types/long.md) | Yes|ID of preview|
|date|[int](../types/int.md) | Yes|When was the processing started|
2019-06-23 13:07:51 +02:00
### 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}
```