MadelineProto/old_docs/API_docs_v55/constructors/documentAttributeAudio.md

40 lines
936 B
Markdown
Raw Normal View History

---
title: documentAttributeAudio
description: documentAttributeAudio attributes, type and example
---
## Constructor: documentAttributeAudio
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|voice|[Bool](../types/Bool.md) | Optional|
|duration|[int](../types/int.md) | Yes|
|title|[string](../types/string.md) | Optional|
|performer|[string](../types/string.md) | Optional|
|waveform|[bytes](../types/bytes.md) | Optional|
### Type: [DocumentAttribute](../types/DocumentAttribute.md)
### Example:
```
2017-03-11 20:06:30 +01:00
$documentAttributeAudio = ['_' => 'documentAttributeAudio', 'voice' => Bool, 'duration' => int, 'title' => string, 'performer' => string, 'waveform' => bytes, ];
```
Or, if you're into Lua:
```
2017-03-11 20:06:30 +01:00
documentAttributeAudio={_='documentAttributeAudio', voice=Bool, duration=int, title=string, performer=string, waveform=bytes, }
```