MadelineProto/old_docs/API_docs_v41/constructors/updateShortChatMessage.md
2017-03-11 20:06:30 +01:00

1.7 KiB

title description
updateShortChatMessage updateShortChatMessage attributes, type and example

Constructor: updateShortChatMessage

Back to constructors index

Attributes:

Name Type Required
unread Bool Optional
out Bool Optional
mentioned Bool Optional
media_unread Bool Optional
id int Yes
from_id int Yes
chat_id int Yes
message string Yes
pts int Yes
pts_count int Yes
date int Yes
fwd_from_id Peer Optional
fwd_date int Optional
reply_to_msg_id int Optional
entities Array of MessageEntity Optional

Type: Updates

Example:

$updateShortChatMessage = ['_' => 'updateShortChatMessage', 'unread' => Bool, 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from_id' => Peer, 'fwd_date' => int, 'reply_to_msg_id' => int, 'entities' => [MessageEntity], ];

Or, if you're into Lua:

updateShortChatMessage={_='updateShortChatMessage', unread=Bool, out=Bool, mentioned=Bool, media_unread=Bool, id=int, from_id=int, chat_id=int, message=string, pts=int, pts_count=int, date=int, fwd_from_id=Peer, fwd_date=int, reply_to_msg_id=int, entities={MessageEntity}, }