MadelineProtoDocs/docs/MTProto_docs/constructors/msgs_all_info.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

893 B

title description image
msgs_all_info Msgs all info https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: msgs_all_info

Back to constructors index

Msgs all info

Attributes:

Name Type Required Description
msg_ids Array of long Yes Msg IDs
info bytes Yes Info

Type: MsgsAllInfo

Example:

$msgs_all_info = ['_' => 'msgs_all_info', 'msg_ids' => [long, long], 'info' => 'bytes'];

PWRTelegram json-encoded version:

{"_": "msgs_all_info", "msg_ids": [long], "info": {"_": "bytes", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

msgs_all_info={_='msgs_all_info', msg_ids={long}, info='bytes'}