com.google.cloud.dialogflow.v2.AnswerFeedbackOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/answer_record.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;
public interface AnswerFeedbackOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.AnswerFeedback)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The correctness level of the specific answer.
*
*
* .google.cloud.dialogflow.v2.AnswerFeedback.CorrectnessLevel correctness_level = 1;
*
* @return The enum numeric value on the wire for correctnessLevel.
*/
int getCorrectnessLevelValue();
/**
*
*
*
* The correctness level of the specific answer.
*
*
* .google.cloud.dialogflow.v2.AnswerFeedback.CorrectnessLevel correctness_level = 1;
*
* @return The correctnessLevel.
*/
com.google.cloud.dialogflow.v2.AnswerFeedback.CorrectnessLevel getCorrectnessLevel();
/**
*
*
*
* Detail feedback of agent assist suggestions.
*
*
* .google.cloud.dialogflow.v2.AgentAssistantFeedback agent_assistant_detail_feedback = 2;
*
*
* @return Whether the agentAssistantDetailFeedback field is set.
*/
boolean hasAgentAssistantDetailFeedback();
/**
*
*
*
* Detail feedback of agent assist suggestions.
*
*
* .google.cloud.dialogflow.v2.AgentAssistantFeedback agent_assistant_detail_feedback = 2;
*
*
* @return The agentAssistantDetailFeedback.
*/
com.google.cloud.dialogflow.v2.AgentAssistantFeedback getAgentAssistantDetailFeedback();
/**
*
*
*
* Detail feedback of agent assist suggestions.
*
*
* .google.cloud.dialogflow.v2.AgentAssistantFeedback agent_assistant_detail_feedback = 2;
*
*/
com.google.cloud.dialogflow.v2.AgentAssistantFeedbackOrBuilder
getAgentAssistantDetailFeedbackOrBuilder();
/**
*
*
*
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
*
*
* bool clicked = 3;
*
* @return The clicked.
*/
boolean getClicked();
/**
*
*
*
* Time when the answer/item was clicked.
*
*
* .google.protobuf.Timestamp click_time = 5;
*
* @return Whether the clickTime field is set.
*/
boolean hasClickTime();
/**
*
*
*
* Time when the answer/item was clicked.
*
*
* .google.protobuf.Timestamp click_time = 5;
*
* @return The clickTime.
*/
com.google.protobuf.Timestamp getClickTime();
/**
*
*
*
* Time when the answer/item was clicked.
*
*
* .google.protobuf.Timestamp click_time = 5;
*/
com.google.protobuf.TimestampOrBuilder getClickTimeOrBuilder();
/**
*
*
*
* Indicates whether the answer/item was displayed to the human
* agent in the agent desktop UI. Default to false.
*
*
* bool displayed = 4;
*
* @return The displayed.
*/
boolean getDisplayed();
/**
*
*
*
* Time when the answer/item was displayed.
*
*
* .google.protobuf.Timestamp display_time = 6;
*
* @return Whether the displayTime field is set.
*/
boolean hasDisplayTime();
/**
*
*
*
* Time when the answer/item was displayed.
*
*
* .google.protobuf.Timestamp display_time = 6;
*
* @return The displayTime.
*/
com.google.protobuf.Timestamp getDisplayTime();
/**
*
*
*
* Time when the answer/item was displayed.
*
*
* .google.protobuf.Timestamp display_time = 6;
*/
com.google.protobuf.TimestampOrBuilder getDisplayTimeOrBuilder();
com.google.cloud.dialogflow.v2.AnswerFeedback.DetailFeedbackCase getDetailFeedbackCase();
}