MadelineProtoDocs/docs/API_docs/constructors/updateReadChannelInbox.md

1.0 KiB

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
folder_id int Optional Folder ID
channel_id int Yes Channel ID
max_id int Yes Max ID
still_unread_count int Yes Still unread count
pts int Yes PTS

Type: Update

Example:

$updateReadChannelInbox = ['_' => 'updateReadChannelInbox', 'folder_id' => int, 'channel_id' => int, 'max_id' => int, 'still_unread_count' => int, 'pts' => int];

Or, if you're into Lua:

updateReadChannelInbox={_='updateReadChannelInbox', folder_id=int, channel_id=int, max_id=int, still_unread_count=int, pts=int}