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

887 B

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

Constructor: updateReadChannelInbox

Back to constructors index

Update read channel inbox

Attributes:

Name Type Required Description
peer Peer Yes Peer
max_id int Yes Max ID

Type: Update

Example:

$updateReadChannelInbox = ['_' => 'updateReadChannelInbox', 'peer' => Peer, 'max_id' => int];

PWRTelegram json-encoded version:

{"_": "updateReadChannelInbox", "peer": Peer, "max_id": int}

Or, if you're into Lua:

updateReadChannelInbox={_='updateReadChannelInbox', peer=Peer, max_id=int}