Class: Google::Apis::LanguageV1beta2::Sentence
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::Sentence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1beta2/classes.rb,
generated/google/apis/language_v1beta2/representations.rb,
generated/google/apis/language_v1beta2/representations.rb
Overview
Represents a sentence in the input document.
Instance Attribute Summary collapse
-
#sentiment ⇒ Google::Apis::LanguageV1beta2::Sentiment
Represents the feeling associated with the entire text or entities in the text.
-
#text ⇒ Google::Apis::LanguageV1beta2::TextSpan
Represents an output piece of text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Sentence
constructor
A new instance of Sentence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Sentence
Returns a new instance of Sentence
729 730 731 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 729 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sentiment ⇒ Google::Apis::LanguageV1beta2::Sentiment
Represents the feeling associated with the entire text or entities in
the text.
Corresponds to the JSON property sentiment
722 723 724 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 722 def sentiment @sentiment end |
#text ⇒ Google::Apis::LanguageV1beta2::TextSpan
Represents an output piece of text.
Corresponds to the JSON property text
727 728 729 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 727 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
734 735 736 737 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 734 def update!(**args) @sentiment = args[:sentiment] if args.key?(:sentiment) @text = args[:text] if args.key?(:text) end |