Class: Google::Apis::VisionV1::GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1::GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb 
Overview
Detected start or end of a structural component.
Instance Attribute Summary collapse
- 
  
    
      #is_prefix  ⇒ Boolean 
    
    
      (also: #is_prefix?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
True if break prepends the element.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Detected break type.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak
Returns a new instance of GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak
      3938 3939 3940  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 3938 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#is_prefix ⇒ Boolean Also known as: is_prefix?
True if break prepends the element.
Corresponds to the JSON property isPrefix
      3930 3931 3932  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 3930 def is_prefix @is_prefix end  | 
  
#type ⇒ String
Detected break type.
Corresponds to the JSON property type
      3936 3937 3938  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 3936 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3943 3944 3945 3946  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 3943 def update!(**args) @is_prefix = args[:is_prefix] if args.key?(:is_prefix) @type = args[:type] if args.key?(:type) end  |