MadelineProtoDocs/old_docs/API_docs_v81/constructors/updateWebPage.md
2018-07-12 20:24:55 +02:00

885 B

title description image
updateWebPage updateWebPage attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateWebPage

Back to constructors index

Attributes:

Name Type Required
webpage WebPage Optional
pts int Yes
pts_count int Yes

Type: Update

Example:

$updateWebPage = ['_' => 'updateWebPage', 'webpage' => WebPage, 'pts' => int, 'pts_count' => int];

PWRTelegram 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}