Class: Google::Apis::LanguageV1beta1::AnalyzeEntitiesRequest

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 entity analysis request message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzeEntitiesRequest

Returns a new instance of AnalyzeEntitiesRequest.



40
41
42
# File 'generated/google/apis/language_v1beta1/classes.rb', line 40

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



33
34
35
# File 'generated/google/apis/language_v1beta1/classes.rb', line 33

def document
  @document
end

#encoding_typeString

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

Returns:

  • (String)


38
39
40
# File 'generated/google/apis/language_v1beta1/classes.rb', line 38

def encoding_type
  @encoding_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



45
46
47
48
# File 'generated/google/apis/language_v1beta1/classes.rb', line 45

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