--- 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 | |----------|---------------|----------|-------------| |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|[int](../types/int.md) | Optional|Fwd from ID| |fwd\_date|[int](../types/int.md) | Optional|Fwd date| |reply\_to\_msg\_id|[int](../types/int.md) | Optional|Reply to msg ID| ### Type: [Updates](../types/Updates.md) ### Example: ```php $updateShortMessage = ['_' => 'updateShortMessage', 'id' => int, 'user_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: ```lua updateShortMessage={_='updateShortMessage', id=int, user_id=int, message='string', pts=int, pts_count=int, date=int, fwd_from_id=int, fwd_date=int, reply_to_msg_id=int} ```