4baac3178e
Add PHP, Lua language tag to Code area
866 B
866 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
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, 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'}