MadelineProtoDocs/docs/API_docs/constructors/updateWebPage.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

46 lines
885 B
Markdown

---
title: updateWebPage
description: updateWebPage attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateWebPage
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|webpage|[WebPage](../types/WebPage.md) | Optional|
|pts|[int](../types/int.md) | Yes|
|pts\_count|[int](../types/int.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateWebPage = ['_' => 'updateWebPage', 'webpage' => WebPage, 'pts' => int, 'pts_count' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateWebPage", "webpage": WebPage, "pts": int, "pts_count": int}
```
Or, if you're into Lua:
```
updateWebPage={_='updateWebPage', webpage=WebPage, pts=int, pts_count=int}
```