MadelineProtoDocs/docs/API_docs/constructors/updateReadHistoryInbox.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.0 KiB

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

Constructor: updateReadHistoryInbox

Back to constructors index

Update read history inbox

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:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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