Class: Google::Apis::LanguageV1beta2::AnnotateTextRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/language_v1beta2/classes.rb,
generated/google/apis/language_v1beta2/representations.rb,
generated/google/apis/language_v1beta2/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnnotateTextRequest

Returns a new instance of AnnotateTextRequest.



273
274
275
# File 'generated/google/apis/language_v1beta2/classes.rb', line 273

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

Instance Attribute Details

#documentGoogle::Apis::LanguageV1beta2::Document

########################################################## # Represents

the input to API methods. Corresponds to the JSON property document



260
261
262
# File 'generated/google/apis/language_v1beta2/classes.rb', line 260

def document
  @document
end

#encoding_typeString

The encoding type used by the API to calculate offsets. Corresponds to the JSON property encodingType

Returns:

  • (String)


265
266
267
# File 'generated/google/apis/language_v1beta2/classes.rb', line 265

def encoding_type
  @encoding_type
end

#featuresGoogle::Apis::LanguageV1beta2::Features

All available features for sentiment, syntax, and semantic analysis. Setting each one to true will enable that specific analysis for the input. Next ID: 10 Corresponds to the JSON property features



271
272
273
# File 'generated/google/apis/language_v1beta2/classes.rb', line 271

def features
  @features
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



278
279
280
281
282
# File 'generated/google/apis/language_v1beta2/classes.rb', line 278

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