Class: Google::Apis::LanguageV1beta1::AnnotateTextRequest

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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AnnotateTextRequest

Returns a new instance of AnnotateTextRequest



304
305
306
# File 'generated/google/apis/language_v1beta1/classes.rb', line 304

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

Instance Attribute Details

#documentGoogle::Apis::LanguageV1beta1::Document

##########################################################

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



296
297
298
# File 'generated/google/apis/language_v1beta1/classes.rb', line 296

def document
  @document
end

#encoding_typeString

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

Returns:

  • (String)


290
291
292
# File 'generated/google/apis/language_v1beta1/classes.rb', line 290

def encoding_type
  @encoding_type
end

#featuresGoogle::Apis::LanguageV1beta1::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



302
303
304
# File 'generated/google/apis/language_v1beta1/classes.rb', line 302

def features
  @features
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



309
310
311
312
313
# File 'generated/google/apis/language_v1beta1/classes.rb', line 309

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