1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-11 12:39:37 +01:00
MadelineProto/docs/API_docs/constructors/decryptedMessageActionSetMessageTTL_8.md

43 lines
857 B
Markdown
Raw Normal View History

2017-05-28 04:49:19 +02:00
---
title: decryptedMessageActionSetMessageTTL
description: decryptedMessageActionSetMessageTTL attributes, type and example
---
## Constructor: decryptedMessageActionSetMessageTTL\_8
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|ttl\_seconds|[int](../types/int.md) | Yes|
### Type: [DecryptedMessageAction](../types/DecryptedMessageAction.md)
### Example:
```
$decryptedMessageActionSetMessageTTL_8 = ['_' => 'decryptedMessageActionSetMessageTTL', 'ttl_seconds' => int, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"decryptedMessageActionSetMessageTTL","ttl_seconds":"int"}
```
2017-05-28 04:49:19 +02:00
Or, if you're into Lua:
```
decryptedMessageActionSetMessageTTL_8={_='decryptedMessageActionSetMessageTTL', ttl_seconds=int, }
```