MadelineProtoDocs/old_docs/API_docs_v66/constructors/msg_new_detailed_info.md

41 lines
869 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: msg_new_detailed_info
2018-12-26 02:56:50 +01:00
description: Msg new detailed info
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: msg\_new\_detailed\_info
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2018-12-26 02:56:50 +01:00
Msg new detailed info
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|answer\_msg\_id|[long](../types/long.md) | Yes|Answer msg ID|
|bytes|[int](../types/int.md) | Yes|Bytes|
|status|[int](../types/int.md) | Yes|Status|
2018-04-01 13:19:25 +02:00
### Type: [MsgDetailedInfo](../types/MsgDetailedInfo.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$msg_new_detailed_info = ['_' => 'msg_new_detailed_info', 'answer_msg_id' => long, 'bytes' => int, 'status' => int];
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
msg_new_detailed_info={_='msg_new_detailed_info', answer_msg_id=long, bytes=int, status=int}
```