Class: Google::Apis::LanguageV1::AnalyzeSentimentRequest
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::AnalyzeSentimentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1/classes.rb,
generated/google/apis/language_v1/representations.rb,
generated/google/apis/language_v1/representations.rb
Overview
The sentiment analysis request message.
Instance Attribute Summary collapse
-
#document ⇒ Google::Apis::LanguageV1::Document
########################################################## # Represents the input to API methods.
-
#encoding_type ⇒ String
The encoding type used by the API to calculate sentence offsets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnalyzeSentimentRequest
constructor
A new instance of AnalyzeSentimentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AnalyzeSentimentRequest
Returns a new instance of AnalyzeSentimentRequest
146 147 148 |
# File 'generated/google/apis/language_v1/classes.rb', line 146 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ Google::Apis::LanguageV1::Document
##########################################################
Represents the input to API methods.
Corresponds to the JSON property document
139 140 141 |
# File 'generated/google/apis/language_v1/classes.rb', line 139 def document @document end |
#encoding_type ⇒ String
The encoding type used by the API to calculate sentence offsets.
Corresponds to the JSON property encodingType
144 145 146 |
# File 'generated/google/apis/language_v1/classes.rb', line 144 def encoding_type @encoding_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
151 152 153 154 |
# File 'generated/google/apis/language_v1/classes.rb', line 151 def update!(**args) @document = args[:document] if args.key?(:document) @encoding_type = args[:encoding_type] if args.key?(:encoding_type) end |