Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SentimentAnalysisResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SentimentAnalysisResult

Returns a new instance of GoogleCloudDialogflowV2beta1SentimentAnalysisResult.



11248
11249
11250
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 11248

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#query_text_sentimentGoogle::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1Sentiment

The sentiment, such as positive/negative feeling or association, for a unit of analysis, such as the query text. Corresponds to the JSON property queryTextSentiment



11246
11247
11248
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 11246

def query_text_sentiment
  @query_text_sentiment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11253
11254
11255
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 11253

def update!(**args)
  @query_text_sentiment = args[:query_text_sentiment] if args.key?(:query_text_sentiment)
end