MadelineProto/docs/API_docs/constructors/documentAttributeAudio.md

22 lines
625 B
Markdown
Raw Normal View History

## Constructor: documentAttributeAudio
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|voice|[Bool](../types/Bool.md) | Optional|
|duration|[int](../types/int.md) | Required|
|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:
```
2016-12-19 17:48:27 +01:00
$documentAttributeAudio = ['_' => documentAttributeAudio', 'voice' => true, 'duration' => int, 'title' => string, 'performer' => string, 'waveform' => bytes, ];
```