mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-03 20:37:47 +01:00
1.5 KiB
1.5 KiB
title | description |
---|---|
updateShortChatMessage | updateShortChatMessage attributes, type and example |
Constructor: updateShortChatMessage
Attributes:
Name | Type | Required |
---|---|---|
unread | Bool | Optional |
out | Bool | Optional |
mentioned | Bool | Optional |
media_unread | Bool | Optional |
id | int | Required |
from_id | int | Required |
chat_id | int | Required |
message | string | Required |
pts | int | Required |
pts_count | int | Required |
date | int | Required |
fwd_from_id | Peer | Optional |
fwd_date | int | Optional |
via_bot_id | int | Optional |
reply_to_msg_id | int | Optional |
entities | Array of MessageEntity | Optional |
Type: Updates
Example:
$updateShortChatMessage = ['_' => 'updateShortChatMessage', 'unread' => true, 'out' => true, 'mentioned' => true, 'media_unread' => true, 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => string, 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from_id' => Peer, 'fwd_date' => int, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'entities' => [Vector t], ];