Class: Google::Apis::LanguageV1::EntityMention
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::EntityMention
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1/classes.rb,
lib/google/apis/language_v1/representations.rb,
lib/google/apis/language_v1/representations.rb
Overview
Represents a mention for an entity in the text. Currently, proper noun mentions are supported.
Instance Attribute Summary collapse
-
#sentiment ⇒ Google::Apis::LanguageV1::Sentiment
Represents the feeling associated with the entire text or entities in the text.
-
#text ⇒ Google::Apis::LanguageV1::TextSpan
Represents a text span in the input document.
-
#type ⇒ String
The type of the entity mention.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EntityMention
constructor
A new instance of EntityMention.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EntityMention
Returns a new instance of EntityMention.
840 841 842 |
# File 'lib/google/apis/language_v1/classes.rb', line 840 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sentiment ⇒ Google::Apis::LanguageV1::Sentiment
Represents the feeling associated with the entire text or entities in the text.
Corresponds to the JSON property sentiment
828 829 830 |
# File 'lib/google/apis/language_v1/classes.rb', line 828 def sentiment @sentiment end |
#text ⇒ Google::Apis::LanguageV1::TextSpan
Represents a text span in the input document.
Corresponds to the JSON property text
833 834 835 |
# File 'lib/google/apis/language_v1/classes.rb', line 833 def text @text end |
#type ⇒ String
The type of the entity mention.
Corresponds to the JSON property type
838 839 840 |
# File 'lib/google/apis/language_v1/classes.rb', line 838 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
845 846 847 848 849 |
# File 'lib/google/apis/language_v1/classes.rb', line 845 def update!(**args) @sentiment = args[:sentiment] if args.key?(:sentiment) @text = args[:text] if args.key?(:text) @type = args[:type] if args.key?(:type) end |