2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: documentAttributeAudio
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Represents an audio file
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: documentAttributeAudio
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Represents an audio file
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|voice|[Bool](../types/Bool.md) | Optional|Whether this is a voice message|
|
|
|
|
|duration|[int](../types/int.md) | Optional|Duration in seconds|
|
|
|
|
|title|[string](../types/string.md) | Optional|Name of song|
|
2019-03-29 21:12:30 +01:00
|
|
|
|performer|[string](../types/string.md) | Optional|Performer|
|
|
|
|
|waveform|[bytes](../types/bytes.md) | Optional|Waveform|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [DocumentAttribute](../types/DocumentAttribute.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$documentAttributeAudio = ['_' => 'documentAttributeAudio', 'voice' => Bool, 'duration' => int, 'title' => 'string', 'performer' => 'string', 'waveform' => 'bytes'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
documentAttributeAudio={_='documentAttributeAudio', voice=Bool, duration=int, title='string', performer='string', waveform='bytes'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|