MadelineProto/docs/MTProto_docs/constructors/MTmessage.md

46 lines
846 B
Markdown
Raw Normal View History

---
title: MTmessage
description: MTmessage attributes, type and example
---
## Constructor: MTmessage
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|msg\_id|[long](../types/long.md) | Yes|
|seqno|[int](../types/int.md) | Yes|
|bytes|[int](../types/int.md) | Yes|
|body|[Object](../types/Object.md) | Yes|
2016-12-30 21:21:36 +01:00
### Type: [MTMessage](../types/MTMessage.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$MTmessage = ['_' => 'MTmessage', 'msg_id' => long, 'seqno' => int, 'bytes' => int, 'body' => Object, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"MTmessage","msg_id":"long","seqno":"int","bytes":"int","body":"Object"}
```
Or, if you're into Lua:
```
MTmessage={_='MTmessage', msg_id=long, seqno=int, bytes=int, body=Object, }
```