Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentRequest
- 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
Instance Attribute Summary collapse
-
#output_audio_config ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1OutputAudioConfig
Corresponds to the JSON property
outputAudioConfig. -
#query_input ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput
Corresponds to the JSON property
queryInput. -
#query_params ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters
Corresponds to the JSON property
queryParams. -
#response_view ⇒ String
Corresponds to the JSON property
responseView. -
#session ⇒ String
Corresponds to the JSON property
session.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DetectIntentRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1DetectIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DetectIntentRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1DetectIntentRequest.
5831 5832 5833 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5831 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_audio_config ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1OutputAudioConfig
Corresponds to the JSON property outputAudioConfig
5809 5810 5811 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5809 def output_audio_config @output_audio_config end |
#query_input ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput
Corresponds to the JSON property queryInput
5814 5815 5816 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5814 def query_input @query_input end |
#query_params ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters
Corresponds to the JSON property queryParams
5819 5820 5821 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5819 def query_params @query_params end |
#response_view ⇒ String
Corresponds to the JSON property responseView
5824 5825 5826 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5824 def response_view @response_view end |
#session ⇒ String
Corresponds to the JSON property session
5829 5830 5831 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5829 def session @session end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5836 5837 5838 5839 5840 5841 5842 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5836 def update!(**args) @output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config) @query_input = args[:query_input] if args.key?(:query_input) @query_params = args[:query_params] if args.key?(:query_params) @response_view = args[:response_view] if args.key?(:response_view) @session = args[:session] if args.key?(:session) end |