Layer 220
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

Update

Gogram Example

// Creating UpdateTranscribedAudio constructor
obj := &tg.UpdateTranscribedAudio{
    Peer: &tg.Peer{},
    MsgId: 0,
    TranscriptionId: int64(0),
    Text: "...",

    // Optional fields:
    // Pending: true,
}