Interface HumanAgentAssistantEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HumanAgentAssistantEvent
,HumanAgentAssistantEvent.Builder
public interface HumanAgentAssistantEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getConversation()
The conversation this notification refers to.com.google.protobuf.ByteString
getConversationBytes()
The conversation this notification refers to.String
getParticipant()
The participant that the suggestion is compiled for.com.google.protobuf.ByteString
getParticipantBytes()
The participant that the suggestion is compiled for.SuggestionResult
getSuggestionResults(int index)
The suggestion results payload that this notification refers to.int
getSuggestionResultsCount()
The suggestion results payload that this notification refers to.List<SuggestionResult>
getSuggestionResultsList()
The suggestion results payload that this notification refers to.SuggestionResultOrBuilder
getSuggestionResultsOrBuilder(int index)
The suggestion results payload that this notification refers to.List<? extends SuggestionResultOrBuilder>
getSuggestionResultsOrBuilderList()
The suggestion results payload that this notification refers to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getConversation
String getConversation()
The conversation this notification refers to. Format: `projects/<Project ID>/conversations/<Conversation ID>`.
string conversation = 1;
- Returns:
- The conversation.
-
getConversationBytes
com.google.protobuf.ByteString getConversationBytes()
The conversation this notification refers to. Format: `projects/<Project ID>/conversations/<Conversation ID>`.
string conversation = 1;
- Returns:
- The bytes for conversation.
-
getParticipant
String getParticipant()
The participant that the suggestion is compiled for. And This field is used to call [Participants.ListSuggestions][google.cloud.dialogflow.v2beta1.Participants.ListSuggestions] API. Format: `projects/<Project ID>/conversations/<Conversation ID>/participants/<Participant ID>`. It will not be set in legacy workflow. [HumanAgentAssistantConfig.name][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.name] for more information.
string participant = 3;
- Returns:
- The participant.
-
getParticipantBytes
com.google.protobuf.ByteString getParticipantBytes()
The participant that the suggestion is compiled for. And This field is used to call [Participants.ListSuggestions][google.cloud.dialogflow.v2beta1.Participants.ListSuggestions] API. Format: `projects/<Project ID>/conversations/<Conversation ID>/participants/<Participant ID>`. It will not be set in legacy workflow. [HumanAgentAssistantConfig.name][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.name] for more information.
string participant = 3;
- Returns:
- The bytes for participant.
-
getSuggestionResultsList
List<SuggestionResult> getSuggestionResultsList()
The suggestion results payload that this notification refers to. It will only be set when [HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses] sets to true.
repeated .google.cloud.dialogflow.v2beta1.SuggestionResult suggestion_results = 5;
-
getSuggestionResults
SuggestionResult getSuggestionResults(int index)
The suggestion results payload that this notification refers to. It will only be set when [HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses] sets to true.
repeated .google.cloud.dialogflow.v2beta1.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsCount
int getSuggestionResultsCount()
The suggestion results payload that this notification refers to. It will only be set when [HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses] sets to true.
repeated .google.cloud.dialogflow.v2beta1.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsOrBuilderList
List<? extends SuggestionResultOrBuilder> getSuggestionResultsOrBuilderList()
The suggestion results payload that this notification refers to. It will only be set when [HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses] sets to true.
repeated .google.cloud.dialogflow.v2beta1.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsOrBuilder
SuggestionResultOrBuilder getSuggestionResultsOrBuilder(int index)
The suggestion results payload that this notification refers to. It will only be set when [HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses][google.cloud.dialogflow.v2beta1.HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses] sets to true.
repeated .google.cloud.dialogflow.v2beta1.SuggestionResult suggestion_results = 5;
-
-