I'm getting the following error when I'm using Dialogflow CX Webhook
{"error":"unknown field \"redactedText\" in google.cloud.dialogflow.cx.v3.ResponseMessage.Text"}
I'm using the code below to read the Webhook Request
wr := cx.WebhookRequest{}
if err = jsonpb.Unmarshal(r.Body, &wr); err != nil {
//I have an error return function here, which returns the error above
}
I'm not sure what's causing the redactedText, and I can't find any documentation about it. Any idea what's causing this?