MadelineProto/old_docs/API_docs_v33/constructors/updateWebPage.md

43 lines
645 B
Markdown
Raw Normal View History

---
title: updateWebPage
description: updateWebPage attributes, type and example
---
## Constructor: updateWebPage
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|webpage|[WebPage](../types/WebPage.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateWebPage = ['_' => 'updateWebPage', 'webpage' => WebPage, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"updateWebPage","webpage":"WebPage"}
```
Or, if you're into Lua:
```
updateWebPage={_='updateWebPage', webpage=WebPage, }
```