Class: Google::Apis::LanguageV1::Sentence

Inherits:
Object
  • Object
show all
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

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.



719
720
721
# File 'generated/google/apis/language_v1/classes.rb', line 719

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

Instance Attribute Details

#sentimentGoogle::Apis::LanguageV1::Sentiment

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



712
713
714
# File 'generated/google/apis/language_v1/classes.rb', line 712

def sentiment
  @sentiment
end

#textGoogle::Apis::LanguageV1::TextSpan

Represents an output piece of text. Corresponds to the JSON property text



717
718
719
# File 'generated/google/apis/language_v1/classes.rb', line 717

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



724
725
726
727
# File 'generated/google/apis/language_v1/classes.rb', line 724

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