Class: Google::Apis::LanguageV2::Sentence

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

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.



859
860
861
# File 'lib/google/apis/language_v2/classes.rb', line 859

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

Instance Attribute Details

#sentimentGoogle::Apis::LanguageV2::Sentiment

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



852
853
854
# File 'lib/google/apis/language_v2/classes.rb', line 852

def sentiment
  @sentiment
end

#textGoogle::Apis::LanguageV2::TextSpan

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



857
858
859
# File 'lib/google/apis/language_v2/classes.rb', line 857

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



864
865
866
867
# File 'lib/google/apis/language_v2/classes.rb', line 864

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