Interface AnswerFeedbackOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AnswerFeedback
,AnswerFeedback.Builder
public interface AnswerFeedbackOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getClicked()
Indicates whether an answer or item was clicked by the human agent.AnswerFeedback.CorrectnessLevel
getCorrectnessLevel()
The correctness level of an answer.int
getCorrectnessLevelValue()
The correctness level of an answer.boolean
getDisplayed()
Indicates whether an answer or item was displayed to the human agent in the agent desktop UI.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCorrectnessLevelValue
int getCorrectnessLevelValue()
The correctness level of an answer.
.google.cloud.contactcenterinsights.v1.AnswerFeedback.CorrectnessLevel correctness_level = 1;
- Returns:
- The enum numeric value on the wire for correctnessLevel.
-
getCorrectnessLevel
AnswerFeedback.CorrectnessLevel getCorrectnessLevel()
The correctness level of an answer.
.google.cloud.contactcenterinsights.v1.AnswerFeedback.CorrectnessLevel correctness_level = 1;
- Returns:
- The correctnessLevel.
-
getClicked
boolean getClicked()
Indicates whether an answer or item was clicked by the human agent.
bool clicked = 2;
- Returns:
- The clicked.
-
getDisplayed
boolean getDisplayed()
Indicates whether an answer or item was displayed to the human agent in the agent desktop UI.
bool displayed = 3;
- Returns:
- The displayed.
-
-