1.7 KiB
1.7 KiB
title | description | image |
---|---|---|
updateShortChatMessage | Shortened constructor containing info on one new incoming text message from a chat | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateShortChatMessage
Shortened constructor containing info on one new incoming text message from a chat
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | ID of the message |
from_id | int | Yes | ID of the sender of the message |
chat_id | int | Yes | ID of the chat where the message was sent |
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 | ID of the message this message replies to |
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}