MadelineProtoDocs/old_docs/API_docs_v14/constructors/updateReadHistoryOutbox.md

1.1 KiB

title description image
updateReadHistoryOutbox Outgoing messages were read https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateReadHistoryOutbox

Back to constructors index

Outgoing messages were read

Attributes:

Name Type Required Description
peer Peer Yes Peer
max_id int Yes Maximum ID of read outgoing messages
pts int Yes Event count after generation
pts_count int Yes Number of events that were generated

Type: Update

Example:

$updateReadHistoryOutbox = ['_' => '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}