Interface TextInputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TextInput,TextInput.Builder
public interface TextInputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationContextgetContext()Conversation context of the input.ConversationContextOrBuildergetContextOrBuilder()Conversation context of the input.StringgetInput()Text input.com.google.protobuf.ByteStringgetInputBytes()Text input.booleanhasContext()Conversation context of the input.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInput
String getInput()
Text input.
string input = 1;- Returns:
- The input.
-
getInputBytes
com.google.protobuf.ByteString getInputBytes()
Text input.
string input = 1;- Returns:
- The bytes for input.
-
hasContext
boolean hasContext()
Conversation context of the input.
.google.cloud.discoveryengine.v1.ConversationContext context = 2;- Returns:
- Whether the context field is set.
-
getContext
ConversationContext getContext()
Conversation context of the input.
.google.cloud.discoveryengine.v1.ConversationContext context = 2;- Returns:
- The context.
-
getContextOrBuilder
ConversationContextOrBuilder getContextOrBuilder()
Conversation context of the input.
.google.cloud.discoveryengine.v1.ConversationContext context = 2;
-
-