messages.rateTranscribedAudio
Layer 225
Constructor ID: 0x7f1d072f
Returns: Bool
Parameters
| Name | Type | Description |
|---|---|---|
peer | InputPeer | |
msg_id | int32 | |
transcription_id | int64 | |
good | bool |
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)