Class: Google::Cloud::Language::Annotation::TextSpan
- Inherits:
- 
      Object
      
        - Object
- Google::Cloud::Language::Annotation::TextSpan
 
- Defined in:
- lib/google/cloud/language/annotation.rb
Overview
Represents a piece of text including relative location.
Instance Attribute Summary collapse
- 
  
    
      #offset  ⇒ Integer 
    
    
      (also: #begin_offset)
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    The API calculates the beginning offset of the content in the original document according to the encodingspecified in the API request.
- 
  
    
      #text  ⇒ String 
    
    
      (also: #content)
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    The content of the output text. 
Instance Attribute Details
#offset ⇒ Integer (readonly) Also known as: begin_offset
The API calculates the beginning offset
of the content in the original document according to the encoding
specified in the API request.
| 223 224 225 | # File 'lib/google/cloud/language/annotation.rb', line 223 def offset @offset end | 
#text ⇒ String (readonly) Also known as: content
The content of the output text.
| 223 224 225 | # File 'lib/google/cloud/language/annotation.rb', line 223 def text @text end |