1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-13 17:48:38 +01:00
MadelineProto/old_docs/API_docs_v33/constructors/updateWebPage.md

36 lines
531 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, ];
```
Or, if you're into Lua:
```
updateWebPage={_='updateWebPage', webpage=WebPage, }
```