mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 14:34:39 +01:00
609 B
609 B
title | description |
---|---|
msgs_ack | msgs_ack attributes, type and example |
Constructor: msgs_ack
Attributes:
Name | Type | Required |
---|---|---|
msg_ids | Array of long | Yes |
Type: MsgsAck
Example:
$msgs_ack = ['_' => 'msgs_ack', 'msg_ids' => [long], ];
PWRTelegram json-encoded version:
{"_":"msgs_ack","msg_ids":["long"]}
Or, if you're into Lua:
msgs_ack={_='msgs_ack', msg_ids={long}, }