Class: Google::Apis::LanguageV1beta2::AnalyzeSentimentResponse

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

Overview

The sentiment analysis response message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzeSentimentResponse

Returns a new instance of AnalyzeSentimentResponse.



176
177
178
# File 'lib/google/apis/language_v1beta2/classes.rb', line 176

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

Instance Attribute Details

#document_sentimentGoogle::Apis::LanguageV1beta2::Sentiment

Represents the feeling associated with the entire text or entities in the text. Corresponds to the JSON property documentSentiment



162
163
164
# File 'lib/google/apis/language_v1beta2/classes.rb', line 162

def document_sentiment
  @document_sentiment
end

#languageString

The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language. See Document.language field for more details. Corresponds to the JSON property language

Returns:

  • (String)


169
170
171
# File 'lib/google/apis/language_v1beta2/classes.rb', line 169

def language
  @language
end

#sentencesArray<Google::Apis::LanguageV1beta2::Sentence>

The sentiment for all the sentences in the document. Corresponds to the JSON property sentences



174
175
176
# File 'lib/google/apis/language_v1beta2/classes.rb', line 174

def sentences
  @sentences
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



181
182
183
184
185
# File 'lib/google/apis/language_v1beta2/classes.rb', line 181

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