MadelineProtoDocs/docs/API_docs/constructors/updateShortChatMessage.md

2.0 KiB

title description image
updateShortChatMessage Update short chat message https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateShortChatMessage

Back to constructors index

Update short chat message

Attributes:

Name Type Required Description
out Bool Optional Out?
mentioned Bool Optional Mentioned?
media_unread Bool Optional Media unread?
silent Bool Optional Silent?
id int Yes ID
from_id int Yes From ID
chat_id int Yes Chat ID
message string Yes Message
pts int Yes Pts
pts_count int Yes Pts count
date int Yes Date
fwd_from MessageFwdHeader Optional Fwd from
via_bot_id int Optional Via bot ID
reply_to_msg_id int Optional Reply to msg ID
entities Array of MessageEntity Optional Entities

Type: Updates

Example:

$updateShortChatMessage = ['_' => 'updateShortChatMessage', 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => 'string', 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [MessageEntity, MessageEntity]];

Or, if you're into Lua:

updateShortChatMessage={_='updateShortChatMessage', out=Bool, mentioned=Bool, media_unread=Bool, silent=Bool, id=int, from_id=int, chat_id=int, message='string', pts=int, pts_count=int, date=int, fwd_from=MessageFwdHeader, via_bot_id=int, reply_to_msg_id=int, entities={MessageEntity}}