Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryInput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryInput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents the query input. It can contain either: 1. An audio config which instructs the speech recognizer how to process the speech audio. 2. A conversational query in the form of text. 3. An event that specifies which intent to trigger.
Instance Attribute Summary collapse
-
#audio_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InputAudioConfig
Instructs the speech recognizer on how to process the audio content.
-
#dtmf ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
A wrapper of repeated TelephonyDtmf digits.
-
#event ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EventInput
Events allow for matching intents by event name instead of the natural language input.
-
#text ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1TextInput
Represents the natural language text to be processed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1QueryInput
constructor
A new instance of GoogleCloudDialogflowV2beta1QueryInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1QueryInput
Returns a new instance of GoogleCloudDialogflowV2beta1QueryInput.
16904 16905 16906 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16904 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InputAudioConfig
Instructs the speech recognizer on how to process the audio content.
Corresponds to the JSON property audioConfig
16884 16885 16886 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16884 def audio_config @audio_config end |
#dtmf ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
A wrapper of repeated TelephonyDtmf digits.
Corresponds to the JSON property dtmf
16889 16890 16891 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16889 def dtmf @dtmf end |
#event ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EventInput
Events allow for matching intents by event name instead of the natural
language input. For instance, input `can trigger a personalized welcome
response. The parameternamemay be used by the agent in the response:"
Hello #welcome_event.name! What can I do for you today?".
Corresponds to the JSON propertyevent`
16897 16898 16899 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16897 def event @event end |
#text ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1TextInput
Represents the natural language text to be processed.
Corresponds to the JSON property text
16902 16903 16904 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16902 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16909 16910 16911 16912 16913 16914 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16909 def update!(**args) @audio_config = args[:audio_config] if args.key?(:audio_config) @dtmf = args[:dtmf] if args.key?(:dtmf) @event = args[:event] if args.key?(:event) @text = args[:text] if args.key?(:text) end |