MadelineProtoDocs/old_docs/API_docs_v91/constructors/updateReadHistoryOutbox.md
2019-03-08 13:49:23 +01:00

1.0 KiB

title description image
updateReadHistoryOutbox Update read history outbox https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateReadHistoryOutbox

Back to constructors index

Update read history outbox

Attributes:

Name Type Required Description
peer Peer Yes Peer
max_id int Yes Max ID
pts int Yes Pts
pts_count int Yes Pts count

Type: Update

Example:

$updateReadHistoryOutbox = ['_' => 'updateReadHistoryOutbox', 'peer' => Peer, 'max_id' => int, 'pts' => int, 'pts_count' => int];

PWRTelegram json-encoded version:

{"_": "updateReadHistoryOutbox", "peer": Peer, "max_id": int, "pts": int, "pts_count": int}

Or, if you're into Lua:

updateReadHistoryOutbox={_='updateReadHistoryOutbox', peer=Peer, max_id=int, pts=int, pts_count=int}