Class: Google::Apis::LanguageV2::AnalyzeEntitiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::AnalyzeEntitiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb
Overview
The entity analysis request message.
Instance Attribute Summary collapse
-
#document ⇒ Google::Apis::LanguageV2::Document
Represents the input to API methods.
-
#encoding_type ⇒ String
The encoding type used by the API to calculate offsets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnalyzeEntitiesRequest
constructor
A new instance of AnalyzeEntitiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AnalyzeEntitiesRequest
Returns a new instance of AnalyzeEntitiesRequest.
39 40 41 |
# File 'lib/google/apis/language_v2/classes.rb', line 39 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ Google::Apis::LanguageV2::Document
Represents the input to API methods.
Corresponds to the JSON property document
32 33 34 |
# File 'lib/google/apis/language_v2/classes.rb', line 32 def document @document end |
#encoding_type ⇒ String
The encoding type used by the API to calculate offsets.
Corresponds to the JSON property encodingType
37 38 39 |
# File 'lib/google/apis/language_v2/classes.rb', line 37 def encoding_type @encoding_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# File 'lib/google/apis/language_v2/classes.rb', line 44 def update!(**args) @document = args[:document] if args.key?(:document) @encoding_type = args[:encoding_type] if args.key?(:encoding_type) end |