MadelineProtoDocs/docs/API_docs/constructors/decryptedMessageMediaAudio_8.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

44 lines
917 B
Markdown

---
title: decryptedMessageMediaAudio
description: decryptedMessageMediaAudio attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: decryptedMessageMediaAudio\_8
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|duration|[int](../types/int.md) | Yes|
|size|[int](../types/int.md) | Yes|
### Type: [DecryptedMessageMedia](../types/DecryptedMessageMedia.md)
### Example:
```php
$decryptedMessageMediaAudio_8 = ['_' => 'decryptedMessageMediaAudio', 'duration' => int, 'size' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "decryptedMessageMediaAudio", "duration": int, "size": int}
```
Or, if you're into Lua:
```lua
decryptedMessageMediaAudio_8={_='decryptedMessageMediaAudio', duration=int, size=int}
```