MadelineProtoDocs/docs/API_docs/constructors/documentAttributeAudio_46.md
2018-04-01 13:24:46 +02:00

949 B

title description
documentAttributeAudio documentAttributeAudio attributes, type and example

Constructor: documentAttributeAudio_46

Back to constructors index

Attributes:

Name Type Required
duration int Optional
title string Yes
performer string Yes

Type: DocumentAttribute

Example:

$documentAttributeAudio_46 = ['_' => 'documentAttributeAudio', 'duration' => int, 'title' => 'string', 'performer' => 'string'];

PWRTelegram json-encoded version:

{"_": "documentAttributeAudio", "duration": int, "title": "string", "performer": "string"}

Or, if you're into Lua:

documentAttributeAudio_46={_='documentAttributeAudio', duration=int, title='string', performer='string'}