Class: Google::Apis::VisionV1::GoogleCloudVisionV1p1beta1TextAnnotationTextProperty

Inherits:
Object
  • Object
show all
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

Additional information detected on the structural component.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p1beta1TextAnnotationTextProperty

Returns a new instance of GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.



2941
2942
2943
# File 'generated/google/apis/vision_v1/classes.rb', line 2941

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#detected_breakGoogle::Apis::VisionV1::GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak

Detected start or end of a structural component. Corresponds to the JSON property detectedBreak



2934
2935
2936
# File 'generated/google/apis/vision_v1/classes.rb', line 2934

def detected_break
  @detected_break
end

#detected_languagesArray<Google::Apis::VisionV1::GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage>

A list of detected languages together with confidence. Corresponds to the JSON property detectedLanguages



2939
2940
2941
# File 'generated/google/apis/vision_v1/classes.rb', line 2939

def detected_languages
  @detected_languages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2946
2947
2948
2949
# File 'generated/google/apis/vision_v1/classes.rb', line 2946

def update!(**args)
  @detected_break = args[:detected_break] if args.key?(:detected_break)
  @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
end