Class: Google::Apis::LanguageV1beta1::EntityMention
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::LanguageV1beta1::EntityMention
 
- 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 mention for an entity in the text. Currently, proper noun mentions are supported.
Instance Attribute Summary collapse
- 
  
    
      #text  ⇒ Google::Apis::LanguageV1beta1::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
| 428 429 430 | # File 'generated/google/apis/language_v1beta1/classes.rb', line 428 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#text ⇒ Google::Apis::LanguageV1beta1::TextSpan
Represents an output piece of text.
Corresponds to the JSON property text
| 421 422 423 | # File 'generated/google/apis/language_v1beta1/classes.rb', line 421 def text @text end | 
#type ⇒ String
The type of the entity mention.
Corresponds to the JSON property type
| 426 427 428 | # File 'generated/google/apis/language_v1beta1/classes.rb', line 426 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 433 434 435 436 | # File 'generated/google/apis/language_v1beta1/classes.rb', line 433 def update!(**args) @text = args[:text] if args.key?(:text) @type = args[:type] if args.key?(:type) end |