Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryInput

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1QueryInput

Returns a new instance of GoogleCloudDialogflowV2beta1QueryInput.



10083
10084
10085
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 10083

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#audio_configGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InputAudioConfig

Instructs the speech recognizer on how to process the audio content. Corresponds to the JSON property audioConfig



10068
10069
10070
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 10068

def audio_config
  @audio_config
end

#eventGoogle::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`



10076
10077
10078
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 10076

def event
  @event
end

#textGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1TextInput

Represents the natural language text to be processed. Corresponds to the JSON property text



10081
10082
10083
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 10081

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10088
10089
10090
10091
10092
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 10088

def update!(**args)
  @audio_config = args[:audio_config] if args.key?(:audio_config)
  @event = args[:event] if args.key?(:event)
  @text = args[:text] if args.key?(:text)
end