MadelineProtoDocs/docs/API_docs/constructors/decryptedMessageActionSetMessageTTL_8.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
988 B
Markdown

---
title: decryptedMessageActionSetMessageTTL
description: Decrypted message action set message ttl
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: decryptedMessageActionSetMessageTTL\_8
[Back to constructors index](index.md)
Decrypted message action set message ttl
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|ttl\_seconds|[int](../types/int.md) | Yes|Ttl seconds|
### Type: [DecryptedMessageAction](../types/DecryptedMessageAction.md)
### Example:
```php
$decryptedMessageActionSetMessageTTL_8 = ['_' => 'decryptedMessageActionSetMessageTTL', 'ttl_seconds' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedMessageActionSetMessageTTL", "ttl_seconds": int}
```
Or, if you're into Lua:
```lua
decryptedMessageActionSetMessageTTL_8={_='decryptedMessageActionSetMessageTTL', ttl_seconds=int}
```