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.
5825 5826 5827 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5825 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_audio_config ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1OutputAudioConfig
Corresponds to the JSON property outputAudioConfig
5803 5804 5805 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5803 def output_audio_config @output_audio_config end |
#query_input ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput
Corresponds to the JSON property queryInput
5808 5809 5810 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5808 def query_input @query_input end |
#query_params ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters
Corresponds to the JSON property queryParams
5813 5814 5815 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5813 def query_params @query_params end |
#response_view ⇒ String
Corresponds to the JSON property responseView
5818 5819 5820 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5818 def response_view @response_view end |
#session ⇒ String
Corresponds to the JSON property session
5823 5824 5825 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5823 def session @session end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5830 5831 5832 5833 5834 5835 5836 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5830 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 |