Skip to content

messages.rateTranscribedAudio

Layer 225

Constructor ID: 0x7f1d072f
Returns: Bool

Parameters

NameTypeDescription
peerInputPeer
msg_idint32
transcription_idint64
goodbool

Example

go
result, err := client.Raw(&tg.RateTranscribedAudioRequest{
    peer: nil, // InputPeer
    msg_id: 0,
    transcription_id: 0,
    good: false,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.