MadelineProtoDocs/docs/API_docs/constructors/decryptedMessageActionCommitKey_20.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

45 lines
1.0 KiB
Markdown

---
title: decryptedMessageActionCommitKey
description: decryptedMessageActionCommitKey attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: decryptedMessageActionCommitKey\_20
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|exchange\_id|[long](../types/long.md) | Yes|
|key\_fingerprint|[long](../types/long.md) | Yes|
### Type: [DecryptedMessageAction](../types/DecryptedMessageAction.md)
### Example:
```
$decryptedMessageActionCommitKey_20 = ['_' => 'decryptedMessageActionCommitKey', 'exchange_id' => long, 'key_fingerprint' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedMessageActionCommitKey", "exchange_id": long, "key_fingerprint": long}
```
Or, if you're into Lua:
```
decryptedMessageActionCommitKey_20={_='decryptedMessageActionCommitKey', exchange_id=long, key_fingerprint=long}
```