Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SentimentAnalysisRequestConfig

Inherits:
Object
  • Object
show all
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

Configures the types of sentiment analysis to perform.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SentimentAnalysisRequestConfig

Returns a new instance of GoogleCloudDialogflowV2beta1SentimentAnalysisRequestConfig.



18692
18693
18694
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18692

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

Instance Attribute Details

#analyze_query_text_sentimentBoolean Also known as: analyze_query_text_sentiment?

Instructs the service to perform sentiment analysis on query_text. If not provided, sentiment analysis is not performed on query_text. Corresponds to the JSON property analyzeQueryTextSentiment

Returns:

  • (Boolean)


18689
18690
18691
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18689

def analyze_query_text_sentiment
  @analyze_query_text_sentiment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18697
18698
18699
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18697

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