Class: Google::Apis::LanguageV1beta2::EntityMention
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::LanguageV1beta2::EntityMention
 
- 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 mention for an entity in the text. Currently, proper noun mentions are supported.
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. 
- 
  
    
      #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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EntityMention
Returns a new instance of EntityMention
| 566 567 568 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 566 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
| 554 555 556 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 554 def sentiment @sentiment end | 
#text ⇒ Google::Apis::LanguageV1beta2::TextSpan
Represents an output piece of text.
Corresponds to the JSON property text
| 559 560 561 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 559 def text @text end | 
#type ⇒ String
The type of the entity mention.
Corresponds to the JSON property type
| 564 565 566 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 564 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 571 572 573 574 575 | # File 'generated/google/apis/language_v1beta2/classes.rb', line 571 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 |