MadelineProto/old_docs/API_docs_v70/constructors/updateWebPage.md

807 B

title description
updateWebPage updateWebPage attributes, type and example

Constructor: updateWebPage

Back to constructors index

Attributes:

Name Type Required
webpage WebPage Yes
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}