Class: Google::Apis::LanguageV1beta2::AnnotateTextResponse
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::AnnotateTextResponse
- 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 text annotations response message.
Instance Attribute Summary collapse
-
#categories ⇒ Array<Google::Apis::LanguageV1beta2::ClassificationCategory>
Categories identified in the input document.
-
#document_sentiment ⇒ Google::Apis::LanguageV1beta2::Sentiment
Represents the feeling associated with the entire text or entities in the text.
-
#entities ⇒ Array<Google::Apis::LanguageV1beta2::Entity>
Entities, along with their semantic information, in the input document.
-
#language ⇒ String
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.
-
#moderation_categories ⇒ Array<Google::Apis::LanguageV1beta2::ClassificationCategory>
Harmful and sensitive categories identified in the input document.
-
#sentences ⇒ Array<Google::Apis::LanguageV1beta2::Sentence>
Sentences in the input document.
-
#tokens ⇒ Array<Google::Apis::LanguageV1beta2::Token>
Tokens, along with their syntactic information, in the input document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnnotateTextResponse
constructor
A new instance of AnnotateTextResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AnnotateTextResponse
Returns a new instance of AnnotateTextResponse.
389 390 391 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 389 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categories ⇒ Array<Google::Apis::LanguageV1beta2::ClassificationCategory>
Categories identified in the input document.
Corresponds to the JSON property categories
351 352 353 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 351 def categories @categories end |
#document_sentiment ⇒ Google::Apis::LanguageV1beta2::Sentiment
Represents the feeling associated with the entire text or entities in the text.
Next ID: 6
Corresponds to the JSON property documentSentiment
357 358 359 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 357 def document_sentiment @document_sentiment end |
#entities ⇒ Array<Google::Apis::LanguageV1beta2::Entity>
Entities, along with their semantic information, in the input document.
Populated if the user enables AnnotateTextRequest.Features.extract_entities.
Corresponds to the JSON property entities
363 364 365 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 363 def entities @entities end |
#language ⇒ String
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
370 371 372 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 370 def language @language end |
#moderation_categories ⇒ Array<Google::Apis::LanguageV1beta2::ClassificationCategory>
Harmful and sensitive categories identified in the input document.
Corresponds to the JSON property moderationCategories
375 376 377 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 375 def moderation_categories @moderation_categories end |
#sentences ⇒ Array<Google::Apis::LanguageV1beta2::Sentence>
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
Corresponds to the JSON property sentences
381 382 383 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 381 def sentences @sentences end |
#tokens ⇒ Array<Google::Apis::LanguageV1beta2::Token>
Tokens, along with their syntactic information, in the input document.
Populated if the user enables AnnotateTextRequest.Features.extract_syntax.
Corresponds to the JSON property tokens
387 388 389 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 387 def tokens @tokens end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
394 395 396 397 398 399 400 401 402 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 394 def update!(**args) @categories = args[:categories] if args.key?(:categories) @document_sentiment = args[:document_sentiment] if args.key?(:document_sentiment) @entities = args[:entities] if args.key?(:entities) @language = args[:language] if args.key?(:language) @moderation_categories = args[:moderation_categories] if args.key?(:moderation_categories) @sentences = args[:sentences] if args.key?(:sentences) @tokens = args[:tokens] if args.key?(:tokens) end |