2017-01-02 19:50:37 +01:00
|
|
|
---
|
|
|
|
title: updateShortChatMessage
|
|
|
|
description: updateShortChatMessage attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: updateShortChatMessage
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|id|[int](../types/int.md) | Yes|
|
|
|
|
|from\_id|[int](../types/int.md) | Yes|
|
|
|
|
|chat\_id|[int](../types/int.md) | Yes|
|
|
|
|
|message|[string](../types/string.md) | Yes|
|
|
|
|
|pts|[int](../types/int.md) | Yes|
|
|
|
|
|pts\_count|[int](../types/int.md) | Yes|
|
|
|
|
|date|[int](../types/int.md) | Yes|
|
2017-01-02 19:50:37 +01:00
|
|
|
|fwd\_from\_id|[Peer](../types/Peer.md) | Optional|
|
|
|
|
|fwd\_date|[int](../types/int.md) | Optional|
|
|
|
|
|reply\_to\_msg\_id|[int](../types/int.md) | Optional|
|
|
|
|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Updates](../types/Updates.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$updateShortChatMessage = ['_' => 'updateShortChatMessage', 'id' => int, 'from_id' => int, 'chat_id' => int, 'message' => 'string', 'pts' => int, 'pts_count' => int, 'date' => int, 'fwd_from_id' => Peer, 'fwd_date' => int, 'reply_to_msg_id' => int, 'entities' => [MessageEntity]];
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "updateShortChatMessage", "id": int, "from_id": int, "chat_id": int, "message": "string", "pts": int, "pts_count": int, "date": int, "fwd_from_id": Peer, "fwd_date": int, "reply_to_msg_id": int, "entities": [MessageEntity]}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
updateShortChatMessage={_='updateShortChatMessage', id=int, from_id=int, chat_id=int, message='string', pts=int, pts_count=int, date=int, fwd_from_id=Peer, fwd_date=int, reply_to_msg_id=int, entities={MessageEntity}}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|