Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SentimentAnalysisResult
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SentimentAnalysisResult
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb 
Overview
The result of sentiment analysis as configured by
sentiment_analysis_request_config.
Instance Attribute Summary collapse
- 
  
    
      #query_text_sentiment  ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1Sentiment 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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)  ⇒ GoogleCloudDialogflowV2beta1SentimentAnalysisResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDialogflowV2beta1SentimentAnalysisResult.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SentimentAnalysisResult
Returns a new instance of GoogleCloudDialogflowV2beta1SentimentAnalysisResult
      4020 4021 4022  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 4020 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#query_text_sentiment ⇒ Google::Apis::DialogflowV2::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
      4018 4019 4020  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 4018 def query_text_sentiment @query_text_sentiment end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4025 4026 4027  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 4025 def update!(**args) @query_text_sentiment = args[:query_text_sentiment] if args.key?(:query_text_sentiment) end  |