Interface QueryInputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryInput,QueryInput.Builder
public interface QueryInputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputAudioConfiggetAudioConfig()Instructs the speech recognizer how to process the speech audio.InputAudioConfigOrBuildergetAudioConfigOrBuilder()Instructs the speech recognizer how to process the speech audio.TelephonyDtmfEventsgetDtmf()The DTMF digits used to invoke intent and fill in parameter value.TelephonyDtmfEventsOrBuildergetDtmfOrBuilder()The DTMF digits used to invoke intent and fill in parameter value.EventInputgetEvent()The event to be processed.EventInputOrBuildergetEventOrBuilder()The event to be processed.QueryInput.InputCasegetInputCase()TextInputgetText()The natural language text to be processed.TextInputOrBuildergetTextOrBuilder()The natural language text to be processed.booleanhasAudioConfig()Instructs the speech recognizer how to process the speech audio.booleanhasDtmf()The DTMF digits used to invoke intent and fill in parameter value.booleanhasEvent()The event to be processed.booleanhasText()The natural language text to be processed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasAudioConfig
boolean hasAudioConfig()
Instructs the speech recognizer how to process the speech audio.
.google.cloud.dialogflow.v2beta1.InputAudioConfig audio_config = 1;- Returns:
- Whether the audioConfig field is set.
-
getAudioConfig
InputAudioConfig getAudioConfig()
Instructs the speech recognizer how to process the speech audio.
.google.cloud.dialogflow.v2beta1.InputAudioConfig audio_config = 1;- Returns:
- The audioConfig.
-
getAudioConfigOrBuilder
InputAudioConfigOrBuilder getAudioConfigOrBuilder()
Instructs the speech recognizer how to process the speech audio.
.google.cloud.dialogflow.v2beta1.InputAudioConfig audio_config = 1;
-
hasText
boolean hasText()
The natural language text to be processed.
.google.cloud.dialogflow.v2beta1.TextInput text = 2;- Returns:
- Whether the text field is set.
-
getText
TextInput getText()
The natural language text to be processed.
.google.cloud.dialogflow.v2beta1.TextInput text = 2;- Returns:
- The text.
-
getTextOrBuilder
TextInputOrBuilder getTextOrBuilder()
The natural language text to be processed.
.google.cloud.dialogflow.v2beta1.TextInput text = 2;
-
hasEvent
boolean hasEvent()
The event to be processed.
.google.cloud.dialogflow.v2beta1.EventInput event = 3;- Returns:
- Whether the event field is set.
-
getEvent
EventInput getEvent()
The event to be processed.
.google.cloud.dialogflow.v2beta1.EventInput event = 3;- Returns:
- The event.
-
getEventOrBuilder
EventInputOrBuilder getEventOrBuilder()
The event to be processed.
.google.cloud.dialogflow.v2beta1.EventInput event = 3;
-
hasDtmf
boolean hasDtmf()
The DTMF digits used to invoke intent and fill in parameter value.
.google.cloud.dialogflow.v2beta1.TelephonyDtmfEvents dtmf = 4;- Returns:
- Whether the dtmf field is set.
-
getDtmf
TelephonyDtmfEvents getDtmf()
The DTMF digits used to invoke intent and fill in parameter value.
.google.cloud.dialogflow.v2beta1.TelephonyDtmfEvents dtmf = 4;- Returns:
- The dtmf.
-
getDtmfOrBuilder
TelephonyDtmfEventsOrBuilder getDtmfOrBuilder()
The DTMF digits used to invoke intent and fill in parameter value.
.google.cloud.dialogflow.v2beta1.TelephonyDtmfEvents dtmf = 4;
-
getInputCase
QueryInput.InputCase getInputCase()
-
-