1.5 KiB
1.5 KiB
title | description |
---|---|
updateShortChatMessage | updateShortChatMessage attributes, type and example |
Constructor: updateShortChatMessage
Attributes:
Name | Type | Required |
---|---|---|
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 | int | Optional |
fwd_date | int | Optional |
reply_to_msg_id | int | Optional |
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];
PWRTelegram json-encoded version:
{"_": "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}