Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Represents the query input. It can contain one of: 1. A conversational query in the form of text. 2. An intent query that specifies which intent to trigger.

  1. Natural language speech audio to be processed. 4. An event to be triggered.
  2. DTMF digits to invoke an intent and fill in parameter value. 6. The results of a tool executed by the client.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1QueryInput

Returns a new instance of GoogleCloudDialogflowCxV3beta1QueryInput.



10985
10986
10987
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10985

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

Instance Attribute Details

#audioGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AudioInput

Represents the natural speech audio to be processed. Corresponds to the JSON property audio



10949
10950
10951
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10949

def audio
  @audio
end

#dtmfGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput

Represents the input for dtmf event. Corresponds to the JSON property dtmf



10954
10955
10956
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10954

def dtmf
  @dtmf
end

#eventGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventInput

Represents the event to trigger. Corresponds to the JSON property event



10959
10960
10961
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10959

def event
  @event
end

#intentGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1IntentInput

Represents the intent to trigger programmatically rather than as a result of natural language processing. Corresponds to the JSON property intent



10965
10966
10967
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10965

def intent
  @intent
end

#language_codeString

Required. The language of the input. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language. Corresponds to the JSON property languageCode

Returns:

  • (String)


10973
10974
10975
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10973

def language_code
  @language_code
end

#textGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TextInput

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



10978
10979
10980
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10978

def text
  @text
end

#tool_call_resultGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult

The result of calling a tool's action that has been executed by the client. Corresponds to the JSON property toolCallResult



10983
10984
10985
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10983

def tool_call_result
  @tool_call_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10990
10991
10992
10993
10994
10995
10996
10997
10998
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10990

def update!(**args)
  @audio = args[:audio] if args.key?(:audio)
  @dtmf = args[:dtmf] if args.key?(:dtmf)
  @event = args[:event] if args.key?(:event)
  @intent = args[:intent] if args.key?(:intent)
  @language_code = args[:language_code] if args.key?(:language_code)
  @text = args[:text] if args.key?(:text)
  @tool_call_result = args[:tool_call_result] if args.key?(:tool_call_result)
end