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

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

Constructor Details

#initialize(**args) ⇒ AnnotateTextRequest

Returns a new instance of AnnotateTextRequest.



215
216
217
# File 'lib/google/apis/language_v1beta1/classes.rb', line 215

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



202
203
204
# File 'lib/google/apis/language_v1beta1/classes.rb', line 202

def document
  @document
end

#encoding_typeString

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

Returns:

  • (String)


207
208
209
# File 'lib/google/apis/language_v1beta1/classes.rb', line 207

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



213
214
215
# File 'lib/google/apis/language_v1beta1/classes.rb', line 213

def features
  @features
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



220
221
222
223
224
# File 'lib/google/apis/language_v1beta1/classes.rb', line 220

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