Class: Google::Apis::LanguageV1beta1::Sentence

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

Overview

Represents a sentence in the input document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Sentence

Returns a new instance of Sentence



574
575
576
# File 'generated/google/apis/language_v1beta1/classes.rb', line 574

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

Instance Attribute Details

#sentimentGoogle::Apis::LanguageV1beta1::Sentiment

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



567
568
569
# File 'generated/google/apis/language_v1beta1/classes.rb', line 567

def sentiment
  @sentiment
end

#textGoogle::Apis::LanguageV1beta1::TextSpan

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



572
573
574
# File 'generated/google/apis/language_v1beta1/classes.rb', line 572

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



579
580
581
582
# File 'generated/google/apis/language_v1beta1/classes.rb', line 579

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