class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SentimentAnalysisResult

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

Attributes

query_text_sentiment[RW]

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` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2Sentiment]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 11200
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 11205
def update!(**args)
  @query_text_sentiment = args[:query_text_sentiment] if args.key?(:query_text_sentiment)
end