Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationTextProperty
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationTextProperty
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/vision_v1p1beta1/classes.rb,
generated/google/apis/vision_v1p1beta1/representations.rb,
generated/google/apis/vision_v1p1beta1/representations.rb 
Overview
Additional information detected on the structural component.
Instance Attribute Summary collapse
- 
  
    
      #detected_break  ⇒ Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Detected start or end of a structural component.
 - 
  
    
      #detected_languages  ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of detected languages together with confidence.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVisionV1p3beta1TextAnnotationTextProperty 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudVisionV1p3beta1TextAnnotationTextProperty.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p3beta1TextAnnotationTextProperty
Returns a new instance of GoogleCloudVisionV1p3beta1TextAnnotationTextProperty
      5947 5948 5949  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 5947 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#detected_break ⇒ Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak
Detected start or end of a structural component.
Corresponds to the JSON property detectedBreak
      5940 5941 5942  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 5940 def detected_break @detected_break end  | 
  
#detected_languages ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage>
A list of detected languages together with confidence.
Corresponds to the JSON property detectedLanguages
      5945 5946 5947  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 5945 def detected_languages @detected_languages end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5952 5953 5954 5955  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 5952 def update!(**args) @detected_break = args[:detected_break] if args.key?(:detected_break) @detected_languages = args[:detected_languages] if args.key?(:detected_languages) end  |