--- title: updateShortMessage description: Update short message image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: updateShortMessage [Back to constructors index](index.md) Update short message ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |unread|[Bool](../types/Bool.md) | Optional|Unread?| |out|[Bool](../types/Bool.md) | Optional|Out?| |mentioned|[Bool](../types/Bool.md) | Optional|Mentioned?| |media\_unread|[Bool](../types/Bool.md) | Optional|Media unread?| |id|[int](../types/int.md) | Yes|ID| |user\_id|[int](../types/int.md) | Yes|User ID| |message|[string](../types/string.md) | Yes|Message| |pts|[int](../types/int.md) | Yes|Pts| |pts\_count|[int](../types/int.md) | Yes|Pts count| |date|[int](../types/int.md) | Yes|Date| |fwd\_from\_id|[Peer](../types/Peer.md) | Optional|Fwd from ID| |fwd\_date|[int](../types/int.md) | Optional|Fwd date| |via\_bot\_id|[int](../types/int.md) | Optional|Via bot ID| |reply\_to\_msg\_id|[int](../types/int.md) | Optional|Reply to msg ID| |entities|Array of [MessageEntity](../types/MessageEntity.md) | Optional|Entities| ### Type: [Updates](../types/Updates.md) ### Example: ```php $updateShortMessage = ['_' => 'updateShortMessage', 'unread' => Bool, 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'id' => int, 'user_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' => [MessageEntity, MessageEntity]]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "updateShortMessage", "unread": Bool, "out": Bool, "mentioned": Bool, "media_unread": Bool, "id": int, "user_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": [MessageEntity]} ``` Or, if you're into Lua: ```lua updateShortMessage={_='updateShortMessage', unread=Bool, out=Bool, mentioned=Bool, media_unread=Bool, id=int, user_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={MessageEntity}} ```