Class: Google::Apis::LanguageV1beta2::AnalyzeEntitiesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::LanguageV1beta2::AnalyzeEntitiesResponse
 
 
- 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
The entity analysis response message.
Instance Attribute Summary collapse
- 
  
    
      #entities  ⇒ Array<Google::Apis::LanguageV1beta2::Entity> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The recognized entities in the input document.
 - 
  
    
      #language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AnalyzeEntitiesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AnalyzeEntitiesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AnalyzeEntitiesResponse
Returns a new instance of AnalyzeEntitiesResponse
      67 68 69  | 
    
      # File 'generated/google/apis/language_v1beta2/classes.rb', line 67 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#entities ⇒ Array<Google::Apis::LanguageV1beta2::Entity>
The recognized entities in the input document.
Corresponds to the JSON property entities
      58 59 60  | 
    
      # File 'generated/google/apis/language_v1beta2/classes.rb', line 58 def entities @entities end  | 
  
#language ⇒ String
The language of the text, which will be the same as the language specified
in the request or, if not specified, the automatically-detected language.
See Document.language field for more details.
Corresponds to the JSON property language
      65 66 67  | 
    
      # File 'generated/google/apis/language_v1beta2/classes.rb', line 65 def language @language end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      72 73 74 75  | 
    
      # File 'generated/google/apis/language_v1beta2/classes.rb', line 72 def update!(**args) @entities = args[:entities] if args.key?(:entities) @language = args[:language] if args.key?(:language) end  |