Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SentimentAnalysisResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb

Overview

The result of sentiment analysis as configured by sentiment_analysis_request_config.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2SentimentAnalysisResult

Returns a new instance of GoogleCloudDialogflowV2SentimentAnalysisResult.



1924
1925
1926
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1924

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

Instance Attribute Details

#query_text_sentimentGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2Sentiment

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



1922
1923
1924
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1922

def query_text_sentiment
  @query_text_sentiment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1929
1930
1931
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1929

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