Layer 220
UpdateTranscribedAudio
A pending voice message transcription initiated with messages. transcribe Audio was updated.
constructor
updateTranscribedAudio#84cd5a flags:# pending:flags.0?true peer:Peer msg_id:int transcription_id:long text:string = Update;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| Pending | flags.0?true | Whether this transcription is still pending and further update Transcribed Audio about it will be sent in the future. |
| Peer | Peer | Peer of the transcribed message |
| MsgId | int | Transcribed message ID |
| TranscriptionId | long | Transcription ID |
| Text | string | Transcribed text |
Returns
UpdateGogram Example
// Creating UpdateTranscribedAudio constructor obj := &tg.UpdateTranscribedAudio{ Peer: &tg.Peer{}, MsgId: 0, TranscriptionId: int64(0), Text: "...", // Optional fields: // Pending: true, }