Class: Google::Apis::LanguageV1beta1::AnalyzeSentimentRequest
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta1::AnalyzeSentimentRequest
- 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 sentiment analysis request message.
Instance Attribute Summary collapse
-
#document ⇒ Google::Apis::LanguageV1beta1::Document
Represents the input to API methods.
-
#encoding_type ⇒ String
The encoding type used by the API to calculate sentence offsets for the sentence sentiment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnalyzeSentimentRequest
constructor
A new instance of AnalyzeSentimentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AnalyzeSentimentRequest
Returns a new instance of AnalyzeSentimentRequest.
92 93 94 |
# File 'lib/google/apis/language_v1beta1/classes.rb', line 92 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ Google::Apis::LanguageV1beta1::Document
Represents the input to API methods.
Corresponds to the JSON property document
84 85 86 |
# File 'lib/google/apis/language_v1beta1/classes.rb', line 84 def document @document end |
#encoding_type ⇒ String
The encoding type used by the API to calculate sentence offsets for the
sentence sentiment.
Corresponds to the JSON property encodingType
90 91 92 |
# File 'lib/google/apis/language_v1beta1/classes.rb', line 90 def encoding_type @encoding_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
97 98 99 100 |
# File 'lib/google/apis/language_v1beta1/classes.rb', line 97 def update!(**args) @document = args[:document] if args.key?(:document) @encoding_type = args[:encoding_type] if args.key?(:encoding_type) end |