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 InputAudioConfig
getAudioConfig()
Instructs the speech recognizer how to process the speech audio.InputAudioConfigOrBuilder
getAudioConfigOrBuilder()
Instructs the speech recognizer how to process the speech audio.TelephonyDtmfEvents
getDtmf()
The DTMF digits used to invoke intent and fill in parameter value.TelephonyDtmfEventsOrBuilder
getDtmfOrBuilder()
The DTMF digits used to invoke intent and fill in parameter value.EventInput
getEvent()
The event to be processed.EventInputOrBuilder
getEventOrBuilder()
The event to be processed.QueryInput.InputCase
getInputCase()
TextInput
getText()
The natural language text to be processed.TextInputOrBuilder
getTextOrBuilder()
The natural language text to be processed.boolean
hasAudioConfig()
Instructs the speech recognizer how to process the speech audio.boolean
hasDtmf()
The DTMF digits used to invoke intent and fill in parameter value.boolean
hasEvent()
The event to be processed.boolean
hasText()
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()
-
-