mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 17:07:20 +01:00
742 B
742 B
title | description |
---|---|
msgs_all_info | msgs_all_info attributes, type and example |
Constructor: msgs_all_info
Attributes:
Name | Type | Required |
---|---|---|
msg_ids | Array of long | Yes |
info | bytes | Yes |
Type: MsgsAllInfo
Example:
$msgs_all_info = ['_' => 'msgs_all_info', 'msg_ids' => [long], 'info' => bytes, ];
PWRTelegram json-encoded version:
{"_":"msgs_all_info","msg_ids":["long"],"info":"bytes"}
Or, if you're into Lua:
msgs_all_info={_='msgs_all_info', msg_ids={long}, info=bytes, }