MadelineProtoDocs/old_docs/API_docs_v33/constructors/updateShortChatMessage.md

1.4 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
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_id int Optional Fwd from ID
fwd_date int Optional Fwd date
reply_to_msg_id int Optional Reply to msg ID

Type: Updates

Example:

$updateShortChatMessage = ['_' => 'updateShortChatMessage', 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => 'string', 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from_id' => int, 'fwd_date' => int, 'reply_to_msg_id' => int];

Or, if you're into Lua:

updateShortChatMessage={_='updateShortChatMessage', id=int, from_id=int, chat_id=int, message='string', pts=int, pts_count=int, date=int, fwd_from_id=int, fwd_date=int, reply_to_msg_id=int}