1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 01:46:55 +01:00
MadelineProto/docs/TD_docs/constructors/messageVoice.md
2017-07-23 16:33:46 +02:00

935 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}