Class: Google::Apis::LanguageV1::AnnotateTextRequest
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::AnnotateTextRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1/classes.rb,
generated/google/apis/language_v1/representations.rb,
generated/google/apis/language_v1/representations.rb
Overview
The request message for the text annotation API, which can perform multiple analysis types (sentiment, entities, and syntax) in one call.
Instance Attribute Summary collapse
-
#document ⇒ Google::Apis::LanguageV1::Document
########################################################## # Represents the input to API methods.
-
#encoding_type ⇒ String
The encoding type used by the API to calculate offsets.
-
#features ⇒ Google::Apis::LanguageV1::Features
All available features for sentiment, syntax, and semantic analysis.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnnotateTextRequest
constructor
A new instance of AnnotateTextRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AnnotateTextRequest
Returns a new instance of AnnotateTextRequest
497 498 499 |
# File 'generated/google/apis/language_v1/classes.rb', line 497 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ Google::Apis::LanguageV1::Document
##########################################################
Represents the input to API methods.
Corresponds to the JSON property document
495 496 497 |
# File 'generated/google/apis/language_v1/classes.rb', line 495 def document @document end |
#encoding_type ⇒ String
The encoding type used by the API to calculate offsets.
Corresponds to the JSON property encodingType
489 490 491 |
# File 'generated/google/apis/language_v1/classes.rb', line 489 def encoding_type @encoding_type end |
#features ⇒ Google::Apis::LanguageV1::Features
All available features for sentiment, syntax, and semantic analysis.
Setting each one to true will enable that specific analysis for the input.
Corresponds to the JSON property features
484 485 486 |
# File 'generated/google/apis/language_v1/classes.rb', line 484 def features @features end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
502 503 504 505 506 |
# File 'generated/google/apis/language_v1/classes.rb', line 502 def update!(**args) @features = args[:features] if args.key?(:features) @encoding_type = args[:encoding_type] if args.key?(:encoding_type) @document = args[:document] if args.key?(:document) end |