MadelineProto/docs/API_docs/constructors/documentAttributeAudio.md

40 lines
936 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: documentAttributeAudio
2016-12-20 13:32:11 +01:00
description: documentAttributeAudio attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: documentAttributeAudio
2016-12-20 13:15:22 +01:00
[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|
2016-12-19 18:56:05 +01:00
### 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, }
```