MadelineProtoDocs/old_docs/API_docs_v2/constructors/documentAttributeAudio.md

39 lines
728 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: documentAttributeAudio
description: Represents an audio file
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: documentAttributeAudio
[Back to constructors index](index.md)
Represents an audio file
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|duration|[int](../types/int.md) | Optional|Duration in seconds|
### Type: [DocumentAttribute](../types/DocumentAttribute.md)
### Example:
```php
$documentAttributeAudio = ['_' => 'documentAttributeAudio', 'duration' => int];
```
Or, if you're into Lua:
```lua
documentAttributeAudio={_='documentAttributeAudio', duration=int}
```