mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-02 23:47:48 +01:00
906 B
906 B
title | description |
---|---|
decryptedMessageActionResend | decryptedMessageActionResend attributes, type and example |
Constructor: decryptedMessageActionResend_17
Attributes:
Name | Type | Required |
---|---|---|
start_seq_no | int | Yes |
end_seq_no | int | Yes |
Type: DecryptedMessageAction
Example:
$decryptedMessageActionResend_17 = ['_' => 'decryptedMessageActionResend', 'start_seq_no' => int, 'end_seq_no' => int];
PWRTelegram json-encoded version:
{"_": "decryptedMessageActionResend", "start_seq_no": int, "end_seq_no": int}
Or, if you're into Lua:
decryptedMessageActionResend_17={_='decryptedMessageActionResend', start_seq_no=int, end_seq_no=int}