MadelineProtoDocs/old_docs/API_docs_v33/constructors/message.md

54 lines
1.5 KiB
Markdown
Raw Normal View History

2018-04-01 13:24:46 +02:00
---
title: message
2018-12-26 02:56:50 +01:00
description: Message
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:24:46 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: message
2018-04-01 13:24:46 +02:00
[Back to constructors index](index.md)
2018-12-26 02:56:50 +01:00
Message
2018-04-01 13:24:46 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[int](../types/int.md) | Yes|ID|
|from\_id|[int](../types/int.md) | Yes|From ID|
|to\_id|[Peer](../types/Peer.md) | Yes|To ID|
|fwd\_from\_id|[int](../types/int.md) | Optional|Forwarded from ID|
|fwd\_date|[int](../types/int.md) | Optional|Forwarded date|
|reply\_to\_msg\_id|[int](../types/int.md) | Optional|Reply to msg ID|
|date|[int](../types/int.md) | Yes|Date|
|message|[string](../types/string.md) | Yes|Message|
|media|[MessageMedia](../types/MessageMedia.md) | Optional|Media|
|reply\_markup|[ReplyMarkup](../types/ReplyMarkup.md) | Optional|Reply markup|
2018-04-01 13:24:46 +02:00
### Type: [Message](../types/Message.md)
### Example:
```php
2018-04-01 13:24:46 +02:00
$message = ['_' => 'message', 'id' => int, 'from_id' => int, 'to_id' => Peer, 'fwd_from_id' => int, 'fwd_date' => int, 'reply_to_msg_id' => int, 'date' => int, 'message' => 'string', 'media' => MessageMedia, 'reply_markup' => ReplyMarkup];
```
Or, if you're into Lua:
2018-04-01 13:24:46 +02:00
```lua
2018-04-01 13:24:46 +02:00
message={_='message', id=int, from_id=int, to_id=Peer, fwd_from_id=int, fwd_date=int, reply_to_msg_id=int, date=int, message='string', media=MessageMedia, reply_markup=ReplyMarkup}
```
## Usage of reply_markup
You can provide bot API reply_markup objects here.