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 ConversationContext
getContext()
Conversation context of the input.ConversationContextOrBuilder
getContextOrBuilder()
Conversation context of the input.String
getInput()
Text input.com.google.protobuf.ByteString
getInputBytes()
Text input.boolean
hasContext()
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.v1beta.ConversationContext context = 2;
- Returns:
- Whether the context field is set.
-
getContext
ConversationContext getContext()
Conversation context of the input.
.google.cloud.discoveryengine.v1beta.ConversationContext context = 2;
- Returns:
- The context.
-
getContextOrBuilder
ConversationContextOrBuilder getContextOrBuilder()
Conversation context of the input.
.google.cloud.discoveryengine.v1beta.ConversationContext context = 2;
-
-