MadelineProto/old_docs/API_docs_v65/constructors/msg_detailed_info.md

39 lines
790 B
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
title: msg_detailed_info
description: msg_detailed_info attributes, type and example
---
## Constructor: msg\_detailed\_info
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|msg\_id|[long](../types/long.md) | Yes|
|answer\_msg\_id|[long](../types/long.md) | Yes|
|bytes|[int](../types/int.md) | Yes|
|status|[int](../types/int.md) | Yes|
### Type: [MsgDetailedInfo](../types/MsgDetailedInfo.md)
### Example:
```
$msg_detailed_info = ['_' => 'msg_detailed_info', 'msg_id' => long, 'answer_msg_id' => long, 'bytes' => int, 'status' => int, ];
```
Or, if you're into Lua:
```
msg_detailed_info={_='msg_detailed_info', msg_id=long, answer_msg_id=long, bytes=int, status=int, }
```