MadelineProtoDocs/old_docs/API_docs_v66/constructors/msgs_all_info.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

829 B

title description image
msgs_all_info msgs_all_info attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: msgs_all_info

Back to constructors index

Attributes:

Name Type Required
msg_ids Array of long Yes
info string Yes

Type: MsgsAllInfo

Example:

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

PWRTelegram json-encoded version:

{"_": "msgs_all_info", "msg_ids": [long], "info": "string"}

Or, if you're into Lua:

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