4baac3178e
Add PHP, Lua language tag to Code area
1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
documentAttributeAudio | documentAttributeAudio attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: documentAttributeAudio
Attributes:
Name | Type | Required |
---|---|---|
voice | Bool | Optional |
duration | int | Optional |
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", "bytes":"base64 encoded bytes"}}
Or, if you're into Lua:
documentAttributeAudio={_='documentAttributeAudio', voice=Bool, duration=int, title='string', performer='string', waveform='bytes'}