Class: Google::Apis::LanguageV1beta1::TextSpan
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::LanguageV1beta1::TextSpan
 
 
- 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 an output piece of text.
Instance Attribute Summary collapse
- 
  
    
      #begin_offset  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The API calculates the beginning offset of the content in the original document according to the EncodingType specified in the API request.
 - 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the output text.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TextSpan 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TextSpan.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TextSpan
Returns a new instance of TextSpan
      710 711 712  | 
    
      # File 'generated/google/apis/language_v1beta1/classes.rb', line 710 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#begin_offset ⇒ Fixnum
The API calculates the beginning offset of the content in the original
document according to the EncodingType specified in the API request.
Corresponds to the JSON property beginOffset
      703 704 705  | 
    
      # File 'generated/google/apis/language_v1beta1/classes.rb', line 703 def begin_offset @begin_offset end  | 
  
#content ⇒ String
The content of the output text.
Corresponds to the JSON property content
      708 709 710  | 
    
      # File 'generated/google/apis/language_v1beta1/classes.rb', line 708 def content @content end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      715 716 717 718  | 
    
      # File 'generated/google/apis/language_v1beta1/classes.rb', line 715 def update!(**args) @begin_offset = args[:begin_offset] if args.key?(:begin_offset) @content = args[:content] if args.key?(:content) end  |