Interface SuggestSmartRepliesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SuggestSmartRepliesResponse
,SuggestSmartRepliesResponse.Builder
public interface SuggestSmartRepliesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getContextSize()
Number of messages prior to and including [latest_message][google.cloud.dialogflow.v2beta1.SuggestSmartRepliesResponse.latest_message] to compile the suggestion.String
getLatestMessage()
The name of the latest conversation message used to compile suggestion for.com.google.protobuf.ByteString
getLatestMessageBytes()
The name of the latest conversation message used to compile suggestion for.SmartReplyAnswer
getSmartReplyAnswers(int index)
Output only.int
getSmartReplyAnswersCount()
Output only.List<SmartReplyAnswer>
getSmartReplyAnswersList()
Output only.SmartReplyAnswerOrBuilder
getSmartReplyAnswersOrBuilder(int index)
Output only.List<? extends SmartReplyAnswerOrBuilder>
getSmartReplyAnswersOrBuilderList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSmartReplyAnswersList
List<SmartReplyAnswer> getSmartReplyAnswersList()
Output only. Multiple reply options provided by smart reply service. The order is based on the rank of the model prediction. The maximum number of the returned replies is set in SmartReplyConfig.
repeated .google.cloud.dialogflow.v2beta1.SmartReplyAnswer smart_reply_answers = 1;
-
getSmartReplyAnswers
SmartReplyAnswer getSmartReplyAnswers(int index)
Output only. Multiple reply options provided by smart reply service. The order is based on the rank of the model prediction. The maximum number of the returned replies is set in SmartReplyConfig.
repeated .google.cloud.dialogflow.v2beta1.SmartReplyAnswer smart_reply_answers = 1;
-
getSmartReplyAnswersCount
int getSmartReplyAnswersCount()
Output only. Multiple reply options provided by smart reply service. The order is based on the rank of the model prediction. The maximum number of the returned replies is set in SmartReplyConfig.
repeated .google.cloud.dialogflow.v2beta1.SmartReplyAnswer smart_reply_answers = 1;
-
getSmartReplyAnswersOrBuilderList
List<? extends SmartReplyAnswerOrBuilder> getSmartReplyAnswersOrBuilderList()
Output only. Multiple reply options provided by smart reply service. The order is based on the rank of the model prediction. The maximum number of the returned replies is set in SmartReplyConfig.
repeated .google.cloud.dialogflow.v2beta1.SmartReplyAnswer smart_reply_answers = 1;
-
getSmartReplyAnswersOrBuilder
SmartReplyAnswerOrBuilder getSmartReplyAnswersOrBuilder(int index)
Output only. Multiple reply options provided by smart reply service. The order is based on the rank of the model prediction. The maximum number of the returned replies is set in SmartReplyConfig.
repeated .google.cloud.dialogflow.v2beta1.SmartReplyAnswer smart_reply_answers = 1;
-
getLatestMessage
String getLatestMessage()
The name of the latest conversation message used to compile suggestion for. Format: `projects/<Project ID>/locations/<Location ID>/conversations/<Conversation ID>/messages/<Message ID>`.
string latest_message = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The latestMessage.
-
getLatestMessageBytes
com.google.protobuf.ByteString getLatestMessageBytes()
The name of the latest conversation message used to compile suggestion for. Format: `projects/<Project ID>/locations/<Location ID>/conversations/<Conversation ID>/messages/<Message ID>`.
string latest_message = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for latestMessage.
-
getContextSize
int getContextSize()
Number of messages prior to and including [latest_message][google.cloud.dialogflow.v2beta1.SuggestSmartRepliesResponse.latest_message] to compile the suggestion. It may be smaller than the [SuggestSmartRepliesRequest.context_size][google.cloud.dialogflow.v2beta1.SuggestSmartRepliesRequest.context_size] field in the request if there aren't that many messages in the conversation.
int32 context_size = 3;
- Returns:
- The contextSize.
-
-