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

46 lines
1.1 KiB
Markdown

---
title: decryptedMessageActionRequestKey
description: Decrypted message action request key
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: decryptedMessageActionRequestKey\_20
[Back to constructors index](index.md)
Decrypted message action request key
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|exchange\_id|[long](../types/long.md) | Yes|Exchange ID|
|g\_a|[bytes](../types/bytes.md) | Yes|G a|
### Type: [DecryptedMessageAction](../types/DecryptedMessageAction.md)
### Example:
```php
$decryptedMessageActionRequestKey_20 = ['_' => 'decryptedMessageActionRequestKey', 'exchange_id' => long, 'g_a' => 'bytes'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedMessageActionRequestKey", "exchange_id": long, "g_a": {"_": "bytes", "bytes":"base64 encoded bytes"}}
```
Or, if you're into Lua:
```lua
decryptedMessageActionRequestKey_20={_='decryptedMessageActionRequestKey', exchange_id=long, g_a='bytes'}
```