mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 16:07:21 +01:00
857 B
857 B
title | description |
---|---|
decryptedMessageActionSetMessageTTL | decryptedMessageActionSetMessageTTL attributes, type and example |
Constructor: decryptedMessageActionSetMessageTTL_8
Attributes:
Name | Type | Required |
---|---|---|
ttl_seconds | int | Yes |
Type: DecryptedMessageAction
Example:
$decryptedMessageActionSetMessageTTL_8 = ['_' => 'decryptedMessageActionSetMessageTTL', 'ttl_seconds' => int, ];
PWRTelegram json-encoded version:
{"_":"decryptedMessageActionSetMessageTTL","ttl_seconds":"int"}
Or, if you're into Lua:
decryptedMessageActionSetMessageTTL_8={_='decryptedMessageActionSetMessageTTL', ttl_seconds=int, }