Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1p1beta1/classes.rb,
lib/google/apis/vision_v1p1beta1/representations.rb,
lib/google/apis/vision_v1p1beta1/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) ⇒ GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak
constructor
A new instance of GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak
Returns a new instance of GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.
6475 6476 6477 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 6475 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
6467 6468 6469 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 6467 def is_prefix @is_prefix end |
#type ⇒ String
Detected break type.
Corresponds to the JSON property type
6473 6474 6475 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 6473 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6480 6481 6482 6483 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 6480 def update!(**args) @is_prefix = args[:is_prefix] if args.key?(:is_prefix) @type = args[:type] if args.key?(:type) end |