Package com.google.cloud.dialogflow.v2
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. Format: `projects/<Project ID>/conversations/<Conversation ID>/participants/<Participant ID>`. It will not be set in legacy workflow.
string participant = 3;
- Returns:
- The participant.
-
getParticipantBytes
com.google.protobuf.ByteString getParticipantBytes()
The participant that the suggestion is compiled for. Format: `projects/<Project ID>/conversations/<Conversation ID>/participants/<Participant ID>`. It will not be set in legacy workflow.
string participant = 3;
- Returns:
- The bytes for participant.
-
getSuggestionResultsList
List<SuggestionResult> getSuggestionResultsList()
The suggestion results payload that this notification refers to.
repeated .google.cloud.dialogflow.v2.SuggestionResult suggestion_results = 5;
-
getSuggestionResults
SuggestionResult getSuggestionResults(int index)
The suggestion results payload that this notification refers to.
repeated .google.cloud.dialogflow.v2.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsCount
int getSuggestionResultsCount()
The suggestion results payload that this notification refers to.
repeated .google.cloud.dialogflow.v2.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsOrBuilderList
List<? extends SuggestionResultOrBuilder> getSuggestionResultsOrBuilderList()
The suggestion results payload that this notification refers to.
repeated .google.cloud.dialogflow.v2.SuggestionResult suggestion_results = 5;
-
getSuggestionResultsOrBuilder
SuggestionResultOrBuilder getSuggestionResultsOrBuilder(int index)
The suggestion results payload that this notification refers to.
repeated .google.cloud.dialogflow.v2.SuggestionResult suggestion_results = 5;
-
-