MadelineProto/old_docs/API_docs_v46/constructors/documentAttributeAudio.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

934 B

title description
documentAttributeAudio documentAttributeAudio attributes, type and example

Constructor: documentAttributeAudio

Back to constructors index

Attributes:

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

Type: DocumentAttribute

Example:

$documentAttributeAudio = ['_' => '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={_='documentAttributeAudio', duration=int, title='string', performer='string'}