1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-03 21:57:46 +01:00
MadelineProto/docs/API_docs/constructors/msg_detailed_info.md

790 B

title description
msg_detailed_info msg_detailed_info attributes, type and example

Constructor: msg_detailed_info

Back to constructors index

Attributes:

Name Type Required
msg_id long Yes
answer_msg_id long Yes
bytes int Yes
status int Yes

Type: MsgDetailedInfo

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, }