Class: Google::Apis::LanguageV1beta2::Sentence

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb

Overview

Represents a sentence in the input document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Sentence

Returns a new instance of Sentence.



1141
1142
1143
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1141

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

Instance Attribute Details

#sentimentGoogle::Apis::LanguageV1beta2::Sentiment

Represents the feeling associated with the entire text or entities in the text. Next ID: 6 Corresponds to the JSON property sentiment



1134
1135
1136
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1134

def sentiment
  @sentiment
end

#textGoogle::Apis::LanguageV1beta2::TextSpan

Represents a text span in the input document. Corresponds to the JSON property text



1139
1140
1141
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1139

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1146
1147
1148
1149
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1146

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