2017-07-23 17:44:01 +02:00
|
|
|
---
|
|
|
|
title: encryptedMessageService
|
|
|
|
description: encryptedMessageService attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: encryptedMessageService
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-07-23 17:44:01 +02:00
|
|
|
|chat\_id|[int](../types/int.md) | Yes|
|
|
|
|
|date|[int](../types/int.md) | Yes|
|
|
|
|
|decrypted\_message|[DecryptedMessage](../types/DecryptedMessage.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [EncryptedMessage](../types/EncryptedMessage.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$encryptedMessageService = ['_' => 'encryptedMessageService', 'chat_id' => int, 'date' => int, 'decrypted_message' => DecryptedMessage];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "encryptedMessageService", "chat_id": int, "date": int, "decrypted_message": DecryptedMessage}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
encryptedMessageService={_='encryptedMessageService', chat_id=int, date=int, decrypted_message=DecryptedMessage}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|