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
Overview
The request message for Participants.AnalyzeContent.
Instance Attribute Summary collapse
-
#assist_query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters
Represents the parameters of human assist query.
-
#cx_parameters ⇒ Hash<String,Object>
Additional parameters to be put into Dialogflow CX session parameters.
-
#event_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput
Events allow for matching intents by event name instead of the natural language input.
-
#query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters
Represents the parameters of the conversational query.
-
#reply_audio_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig
Instructs the speech synthesizer on how to generate the output audio content.
-
#request_id ⇒ String
A unique identifier for this request.
-
#suggestion_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionInput
Represents the selection of a suggestion.
-
#text_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput
Auxiliary proto messages.
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.
8169 8170 8171 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8169 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assist_query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters
Represents the parameters of human assist query.
Corresponds to the JSON property assistQueryParams
8122 8123 8124 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8122 def assist_query_params @assist_query_params end |
#cx_parameters ⇒ Hash<String,Object>
Additional parameters to be put into Dialogflow CX session parameters. To
remove a parameter from the session, clients should explicitly set the
parameter value to null. Note: this field should only be used if you are
connecting to a Dialogflow CX agent.
Corresponds to the JSON property cxParameters
8130 8131 8132 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8130 def cx_parameters @cx_parameters end |
#event_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput
Events allow for matching intents by event name instead of the natural
language input. For instance, input `can trigger a personalized welcome
response. The parameter
namemay be used by the agent in the response:
"
Hello #welcome_event.name! What can I do for you today?".
Corresponds to the JSON property
eventInput`
8138 8139 8140 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8138 def event_input @event_input end |
#query_params ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters
Represents the parameters of the conversational query.
Corresponds to the JSON property queryParams
8143 8144 8145 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8143 def query_params @query_params end |
#reply_audio_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig
Instructs the speech synthesizer on how to generate the output audio content.
If this audio config is supplied in a request, it overrides all existing text-
to-speech settings applied to the agent.
Corresponds to the JSON property replyAudioConfig
8150 8151 8152 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8150 def reply_audio_config @reply_audio_config end |
#request_id ⇒ String
A unique identifier for this request. Restricted to 36 ASCII characters. A
random UUID is recommended. This request is only idempotent if a request_id
is provided.
Corresponds to the JSON property requestId
8157 8158 8159 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8157 def request_id @request_id end |
#suggestion_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionInput
Represents the selection of a suggestion.
Corresponds to the JSON property suggestionInput
8162 8163 8164 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8162 def suggestion_input @suggestion_input end |
#text_input ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput
Auxiliary proto messages. Represents the natural language text to be processed.
Corresponds to the JSON property textInput
8167 8168 8169 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8167 def text_input @text_input end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8174 def update!(**args) @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params) @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 |