Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SentimentAnalysisResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SentimentAnalysisResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
The result of sentiment analysis. Sentiment analysis inspects user input and identifies the prevailing subjective opinion, especially to determine a user's attitude as positive, negative, or neutral. For Participants.DetectIntent, it needs to be configured in DetectIntentRequest.query_params. For Participants. StreamingDetectIntent, it needs to be configured in StreamingDetectIntentRequest.query_params. And for Participants.AnalyzeContent and Participants.StreamingAnalyzeContent, it needs to be configured in ConversationProfile.human_agent_assistant_config
Instance Attribute Summary collapse
-
#query_text_sentiment ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2Sentiment
The sentiment, such as positive/negative feeling or association, for a unit of analysis, such as the query text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2SentimentAnalysisResult
constructor
A new instance of GoogleCloudDialogflowV2SentimentAnalysisResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2SentimentAnalysisResult
Returns a new instance of GoogleCloudDialogflowV2SentimentAnalysisResult.
10595 10596 10597 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#query_text_sentiment ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2Sentiment
The sentiment, such as positive/negative feeling or association, for a unit of
analysis, such as the query text. See: https://cloud.google.com/natural-
language/docs/basics#interpreting_sentiment_analysis_values for how to
interpret the result.
Corresponds to the JSON property queryTextSentiment
10593 10594 10595 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10593 def query_text_sentiment @query_text_sentiment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10600 10601 10602 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10600 def update!(**args) @query_text_sentiment = args[:query_text_sentiment] if args.key?(:query_text_sentiment) end |