Layer 220
MessagesRateTranscribedAudio
Rate transcribed voice message
method
Users
messages.rateTranscribedAudio#7f1d072f peer:InputPeer msg_id:int transcription_id:long good:Bool = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Peer | InputPeer | Peer where the voice message was sent |
| MsgId | int | Message ID |
| TranscriptionId | long | Transcription ID |
| Good | Bool | Whether the transcription was correct |
Returns
BoolGogram Example
// MessagesRateTranscribedAudio - positional arguments result, err := client.MessagesRateTranscribedAudio(&tg.InputPeerUser{UserID: int64(123456789)}, 0, int64(0), true) if err != nil { // handle error } // result is *tg.Bool