39 lines
790 B
Markdown
39 lines
790 B
Markdown
|
---
|
||
|
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, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|