Class: Google::Apis::LanguageV2::AnalyzeSentimentRequest

Inherits:
Object
  • Object
show all
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 sentiment analysis request message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzeSentimentRequest

Returns a new instance of AnalyzeSentimentRequest.



99
100
101
# File 'lib/google/apis/language_v2/classes.rb', line 99

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#documentGoogle::Apis::LanguageV2::Document

Represents the input to API methods. Corresponds to the JSON property document



92
93
94
# File 'lib/google/apis/language_v2/classes.rb', line 92

def document
  @document
end

#encoding_typeString

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

Returns:

  • (String)


97
98
99
# File 'lib/google/apis/language_v2/classes.rb', line 97

def encoding_type
  @encoding_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



104
105
106
107
# File 'lib/google/apis/language_v2/classes.rb', line 104

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