Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnalyzeContentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnalyzeContentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#assist_query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters
Corresponds to the JSON property
assistQueryParams. -
#audio_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput
Corresponds to the JSON property
audioInput. -
#cx_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
cxParameters. -
#event_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput
Corresponds to the JSON property
eventInput. -
#query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters
Corresponds to the JSON property
queryParams. -
#reply_audio_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig
Corresponds to the JSON property
replyAudioConfig. -
#request_id ⇒ String
Corresponds to the JSON property
requestId. -
#suggestion_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionInput
Corresponds to the JSON property
suggestionInput. -
#text_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput
Corresponds to the JSON property
textInput.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnalyzeContentRequest
constructor
A new instance of GoogleCloudDialogflowV2AnalyzeContentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnalyzeContentRequest
Returns a new instance of GoogleCloudDialogflowV2AnalyzeContentRequest.
7387 7388 7389 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assist_query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters
Corresponds to the JSON property assistQueryParams
7345 7346 7347 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7345 def assist_query_params @assist_query_params end |
#audio_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput
Corresponds to the JSON property audioInput
7350 7351 7352 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7350 def audio_input @audio_input end |
#cx_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property cxParameters
7355 7356 7357 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7355 def cx_parameters @cx_parameters end |
#event_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput
Corresponds to the JSON property eventInput
7360 7361 7362 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7360 def event_input @event_input end |
#query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters
Corresponds to the JSON property queryParams
7365 7366 7367 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7365 def query_params @query_params end |
#reply_audio_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig
Corresponds to the JSON property replyAudioConfig
7370 7371 7372 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7370 def reply_audio_config @reply_audio_config end |
#request_id ⇒ String
Corresponds to the JSON property requestId
7375 7376 7377 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7375 def request_id @request_id end |
#suggestion_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionInput
Corresponds to the JSON property suggestionInput
7380 7381 7382 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7380 def suggestion_input @suggestion_input end |
#text_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput
Corresponds to the JSON property textInput
7385 7386 7387 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7385 def text_input @text_input end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7392 def update!(**args) @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params) @audio_input = args[:audio_input] if args.key?(:audio_input) @cx_parameters = args[:cx_parameters] if args.key?(:cx_parameters) @event_input = args[:event_input] if args.key?(:event_input) @query_params = args[:query_params] if args.key?(:query_params) @reply_audio_config = args[:reply_audio_config] if args.key?(:reply_audio_config) @request_id = args[:request_id] if args.key?(:request_id) @suggestion_input = args[:suggestion_input] if args.key?(:suggestion_input) @text_input = args[:text_input] if args.key?(:text_input) end |