mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 13:39:38 +01:00
36 lines
688 B
Markdown
36 lines
688 B
Markdown
|
---
|
||
|
title: decryptedMessageService
|
||
|
description: decryptedMessageService attributes, type and example
|
||
|
---
|
||
|
## Constructor: decryptedMessageService\_17
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|action|[DecryptedMessageAction](../types/DecryptedMessageAction.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [DecryptedMessage](../types/DecryptedMessage.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$decryptedMessageService_17 = ['_' => 'decryptedMessageService', 'action' => DecryptedMessageAction, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
decryptedMessageService_17={_='decryptedMessageService', action=DecryptedMessageAction, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|