MadelineProto/docs/TD_docs/constructors/messageVoice.md
2017-07-23 16:11:02 +02:00

932 B

title description
messageVoice Voice message

Constructor: messageVoice

Back to constructors index

Voice message

Attributes:

Name Type Required Description
voice voice Yes Message content
caption string Yes Voice caption
is_listened Bool Yes True, if the voice message was listened to

Type: MessageContent

Example:

$messageVoice = ['_' => 'messageVoice', 'voice' => voice, 'caption' => string, 'is_listened' => Bool, ];

PWRTelegram json-encoded version:

{"_":"messageVoice","voice":"voice","caption":"string","is_listened":"Bool"}

Or, if you're into Lua:

messageVoice={_='messageVoice', voice=voice, caption=string, is_listened=Bool, }