mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
1.4 KiB
1.4 KiB
title | description | nav_exclude | image |
---|---|---|---|
updateTranscribedAudio | A pending voice message transcription » initiated with messages.transcribeAudio was updated. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateTranscribedAudio
A pending voice message transcription » initiated with messages.transcribeAudio was updated.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
pending | Bool | Optional | Whether this transcription is still pending and further updateTranscribedAudio about it will be sent in the future. |
peer | long | Yes | Peer of the transcribed message |
msg_id | int | Yes | Transcribed message ID |
transcription_id | long | Yes | Transcription ID |
text | string | Yes | Transcribed text |
Type: Update
Example:
$updateTranscribedAudio = ['_' => 'updateTranscribedAudio', 'pending' => Bool, 'peer' => long, 'msg_id' => int, 'transcription_id' => long, 'text' => 'string'];