1.1 KiB
1.1 KiB
title | description |
---|---|
documentAttributeAudio | documentAttributeAudio attributes, type and example |
Constructor: documentAttributeAudio
Attributes:
Name | Type | Required |
---|---|---|
voice | Bool | Optional |
duration | int | Yes |
title | string | Optional |
performer | string | Optional |
waveform | bytes | Optional |
Type: DocumentAttribute
Example:
$documentAttributeAudio = ['_' => 'documentAttributeAudio', 'voice' => Bool, 'duration' => int, 'title' => 'string', 'performer' => 'string', 'waveform' => 'bytes'];
PWRTelegram json-encoded version:
{"_": "documentAttributeAudio", "voice": Bool, "duration": int, "title": "string", "performer": "string", "waveform": "bytes"}
Or, if you're into Lua:
documentAttributeAudio={_='documentAttributeAudio', voice=Bool, duration=int, title='string', performer='string', waveform='bytes'}